You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
⨯ ./apps/next-app/edgedb.client.ts:1:0
Module not found: Can't resolve '@edgedb/auth-nextjs/app/client'
> 1 | import createNextAppClientAuth from "@edgedb/auth-nextjs/app/client";
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2 |
3 | import config from "./auth.config";
4 |
https://nextjs.org/docs/messages/module-not-found
./apps/next-app/edgedb.server.ts:2:0
Module not found: Can't resolve '@edgedb/auth-nextjs/app'
1 | import { createClient } from "edgedb";
> 2 | import createAuth from "@edgedb/auth-nextjs/app";
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
3 | import config from "./auth.config";
4 |
5 | export const client = createClient();
https://nextjs.org/docs/messages/module-not-found
./apps/next-app/effects/auth.ts:3:0
Module not found: Can't resolve '@edgedb/auth-core'
1 | import { Effect, Data } from "effect";
2 | import type { Client } from "edgedb";
> 3 | import { createVerifierChallengePair } from "@edgedb/auth-core";
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
4 |
5 | import { auth } from "@/edgedb.server";
6 |
https://nextjs.org/docs/messages/module-not-found
⨯ ./apps/next-app/edgedb.client.ts:1:0
Module not found: Can't resolve '@edgedb/auth-nextjs/app/client'
> 1 | import createNextAppClientAuth from "@edgedb/auth-nextjs/app/client";
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2 |
3 | import config from "./auth.config";
4 |
https://nextjs.org/docs/messages/module-not-found
./apps/next-app/edgedb.server.ts:2:0
Module not found: Can't resolve '@edgedb/auth-nextjs/app'
1 | import { createClient } from "edgedb";
> 2 | import createAuth from "@edgedb/auth-nextjs/app";
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
3 | import config from "./auth.config";
4 |
5 | export const client = createClient();
https://nextjs.org/docs/messages/module-not-found
./apps/next-app/effects/auth.ts:3:0
Module not found: Can't resolve '@edgedb/auth-core'
1 | import { Effect, Data } from "effect";
2 | import type { Client } from "edgedb";
> 3 | import { createVerifierChallengePair } from "@edgedb/auth-core";
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
4 |
5 | import { auth } from "@/edgedb.server";
6 |
https://nextjs.org/docs/messages/module-not-found
Also, Next.js 15 changed all of the dynamic route functions to async, so we'll need to do some dynamic checking of the functions to see if they are async or not before calling cookies(), for instance.
The text was updated successfully, but these errors were encountered:
Getting the following error messages:
Also, Next.js 15 changed all of the dynamic route functions to async, so we'll need to do some dynamic checking of the functions to see if they are async or not before calling
cookies()
, for instance.The text was updated successfully, but these errors were encountered: