import './polyfills'; import { StackServerApp } from '@stackframe/stack'; if (process.env.NEXT_PUBLIC_STACK_PROJECT_ID !== "internal") { throw new Error("This project is not configured correctly. stack-server must always use the internal project."); } export const stackServerApp = new StackServerApp<"nextjs-cookie", true, 'internal'>({ tokenStore: "nextjs-cookie", urls: { afterSignIn: "/projects", afterSignUp: "/projects", afterSignOut: "/", } });