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.
9 lines
241 B
JavaScript
9 lines
241 B
JavaScript
const { StackHandler } = require("@stackframe/stack");
|
|
const { stackServerApp } = require("../../../stack");
|
|
|
|
function Handler(props) {
|
|
return <StackHandler fullPage app={stackServerApp} routeProps={props} />;
|
|
}
|
|
|
|
module.exports = Handler;
|