mirror of
https://github.com/makeplane/plane.git
synced 2025-12-22 14:49:37 +01:00
9 lines
222 B
TypeScript
9 lines
222 B
TypeScript
import type { Config } from "@react-router/dev/config";
|
|
|
|
export default {
|
|
appDirectory: "app",
|
|
// Base path for the app (web)
|
|
basename: process.env.NEXT_PUBLIC_WEB_BASE_PATH || "/",
|
|
ssr: false,
|
|
} satisfies Config;
|