fixed server urls bug

This commit is contained in:
Zai Shi 2024-03-13 10:28:01 +08:00
parent 9d50641a45
commit 4135356423

View File

@ -3,6 +3,8 @@ import { StackServerApp } from '@stackframe/stack';
export const stackServerApp = new StackServerApp({
tokenStore: "nextjs-cookie",
urls: {
userHome: "/projects",
afterSignIn: "/projects",
afterSignUp: "/projects",
afterSignOut: "/",
}
});