mirror of
https://github.com/lowdefy/lowdefy.git
synced 2025-04-06 15:30:30 +08:00
fix: Fix auth callback import in dev server.
This commit is contained in:
parent
f266fbfa7c
commit
557669e798
@ -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 } }));
|
||||
|
@ -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 } }));
|
||||
|
Loading…
x
Reference in New Issue
Block a user