fix: Fix auth callback import in dev server.

This commit is contained in:
Sam 2022-05-12 17:28:16 +02:00
parent f266fbfa7c
commit 557669e798
No known key found for this signature in database
GPG Key ID: D004126FCD1A6DF0
2 changed files with 2 additions and 17 deletions

View File

@ -18,14 +18,7 @@ import NextAuth from 'next-auth';
import { getNextAuthConfig } from '@lowdefy/api';
import authJson from '../../../build/auth.json';
import callbacks from '../../../build/plugins/auth/callbacks.js';
import providers from '../../../build/plugins/auth/providers.js';
// If getNextAuthConfig needs to be async:
// async function auth(req, res) {
// const config = await getNextAuthConfig();
// return await NextAuth(req, res, config);
// }
// export default auth;
export default NextAuth(getNextAuthConfig({ authJson, plugins: { providers } }));
export default NextAuth(getNextAuthConfig({ authJson, plugins: { callbacks, providers } }));

View File

@ -21,12 +21,4 @@ import authJson from '../../../build/auth.json';
import callbacks from '../../../build/plugins/auth/callbacks.js';
import providers from '../../../build/plugins/auth/providers.js';
// If getNextAuthConfig needs to be async:
// async function auth(req, res) {
// const config = await getNextAuthConfig();
// return await NextAuth(req, res, config);
// }
// export default auth;
export default NextAuth(getNextAuthConfig({ authJson, plugins: { callbacks, providers } }));