Following the Fullstack Auth with Next JS and D1 tutorial but having issues on step 4

▲ ERROR: getCloudflareContext has been called in sync mode in either a static route or at the top level of a non-static one, both cases are not allowed but can be solved by either: ▲ - make sure that the call is not at the top level and that the route is not static ▲ - call getCloudflareContext({async: true}) to use the async mode ▲ - avoid calling getCloudflareContext in the route
import NextAuth from "next-auth";
import { NextAuthResult } from "next-auth";
import { D1Adapter } from "@auth/d1-adapter";
import Resend from "next-auth/providers/resend";
import { getCloudflareContext } from "@opennextjs/cloudflare";

const authResult = async (): Promise<NextAuthResult> => {
return NextAuth({
providers: [
Resend({
apiKey: (await getCloudflareContext()).env.AUTH_RESEND_KEY,
from: (await getCloudflareContext()).env.AUTH_EMAIL_FROM,
}),
],
adapter: D1Adapter((await getCloudflareContext()).env.DB),
});
};

export const { handlers, signIn, signOut, auth } = await authResult();
import NextAuth from "next-auth";
import { NextAuthResult } from "next-auth";
import { D1Adapter } from "@auth/d1-adapter";
import Resend from "next-auth/providers/resend";
import { getCloudflareContext } from "@opennextjs/cloudflare";

const authResult = async (): Promise<NextAuthResult> => {
return NextAuth({
providers: [
Resend({
apiKey: (await getCloudflareContext()).env.AUTH_RESEND_KEY,
from: (await getCloudflareContext()).env.AUTH_EMAIL_FROM,
}),
],
adapter: D1Adapter((await getCloudflareContext()).env.DB),
});
};

export const { handlers, signIn, signOut, auth } = await authResult();
0 Replies
No replies yetBe the first to reply to this messageJoin

Did you find this page helpful?