mirror of
https://github.com/dograh-hq/dograh.git
synced 2026-06-13 08:15:21 +02:00
23 lines
601 B
TypeScript
23 lines
601 B
TypeScript
|
|
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}
|
||
|
|
/>;
|
||
|
|
}
|