mirror of
https://github.com/stack-auth/stack.git
synced 2026-06-13 21:01:21 +08:00
Some checks failed
Runs E2E API Tests / build (20.x) (push) Has been cancelled
Runs E2E API Tests / build (22.x) (push) Has been cancelled
Lint & build / lint_and_build (20.x) (push) Has been cancelled
Lint & build / lint_and_build (22.x) (push) Has been cancelled
TOC Generator / TOC Generator (push) Has been cancelled
Updates `examples/demo` to Next.js 15 and adds Next.js 15 support to `packages/stack`. The other packages and apps are still running on Next.js 14 to ensure compatibility.
11 lines
311 B
TypeScript
11 lines
311 B
TypeScript
import { StackHandler } from "@stackframe/stack";
|
|
import { stackServerApp } from "../../../stack";
|
|
|
|
export default function Handler(props: any) {
|
|
return (
|
|
<div style={{ backgroundColor: "white", borderRadius: 4 }}>
|
|
<StackHandler fullPage app={stackServerApp} routeProps={props} />
|
|
</div>
|
|
);
|
|
}
|