The `/social-providers` endpoint should return a list of the provider ids, not their names. This was found when trying to use the microsoft endpoint and the endpoint was returning `"microsoft entraid"`, when the `AuthForm` expects it to just be `"microsoft"`.
18 lines
381 B
JSON
18 lines
381 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Next.js",
|
|
"type": "node-terminal",
|
|
"request": "launch",
|
|
"command": "pnpm dev",
|
|
"cwd": "${workspaceFolder}/apps/web",
|
|
"skipFiles": ["<node_internals>/**"],
|
|
"sourceMaps": true,
|
|
"sourceMapPathOverrides": {
|
|
"/turbopack/[project]/*": "${webRoot}/*"
|
|
}
|
|
}
|
|
]
|
|
}
|