mirror of
https://github.com/stack-auth/stack.git
synced 2026-06-13 21:01:21 +08:00
11 lines
210 B
TypeScript
11 lines
210 B
TypeScript
import "server-only";
|
|
|
|
import { StackServerApp } from "@stackframe/stack";
|
|
|
|
export const stackServerApp = new StackServerApp({
|
|
tokenStore: "nextjs-cookie",
|
|
urls: {
|
|
accountSettings: '/settings',
|
|
}
|
|
});
|