mirror of
https://github.com/stack-auth/stack.git
synced 2026-07-20 21:29:36 +08:00
Keep the transport migration isolated on a dedicated branch so development can continue without blocking dev. Co-authored-by: Cursor <[email protected]>
11 lines
221 B
TypeScript
11 lines
221 B
TypeScript
import app from "../dist/vercel.mjs";
|
|
|
|
export const config = {
|
|
runtime: "nodejs",
|
|
maxDuration: 60,
|
|
};
|
|
|
|
export default function handler(request: Request): Response | Promise<Response> {
|
|
return app.handle(request);
|
|
}
|