mirror of
https://github.com/makeplane/plane.git
synced 2025-12-22 06:39:31 +01:00
9 lines
252 B
TypeScript
9 lines
252 B
TypeScript
|
|
import type { Config } from "@react-router/dev/config";
|
||
|
|
|
||
|
|
export default {
|
||
|
|
appDirectory: "app",
|
||
|
|
basename: process.env.NEXT_PUBLIC_WEB_BASE_PATH,
|
||
|
|
// Web runs as a client-side app; build a static client bundle only
|
||
|
|
ssr: false,
|
||
|
|
} satisfies Config;
|