Initial Commit 🚀 🚀

This commit is contained in:
Abhishek Kumar 2025-09-09 14:37:32 +05:30
commit 4f2a629340
444 changed files with 76863 additions and 0 deletions

View file

@ -0,0 +1,22 @@
import { StackHandler } from "@stackframe/stack";
import { stackServerApp } from "../../../stack";
const authProvider = process.env.NEXT_PUBLIC_AUTH_PROVIDER;
export default function Handler(props: unknown) {
if (authProvider === "local") {
// Return a simple message when using local auth
return (
<div style={{ padding: '20px', textAlign: 'center' }}>
<h1>Local Auth Mode</h1>
<p>Stack Auth handler is disabled when using local authentication.</p>
</div>
);
}
return <StackHandler
fullPage
app={stackServerApp}
routeProps={props}
/>;
}