mirror of
https://github.com/makeplane/plane.git
synced 2025-12-16 11:57:56 +01:00
11 lines
279 B
TypeScript
11 lines
279 B
TypeScript
import type { Config } from "@react-router/dev/config";
|
|
import { joinUrlPath } from "@plane/utils";
|
|
|
|
const basePath = joinUrlPath(process.env.VITE_SPACE_BASE_PATH ?? "", "/") ?? "/";
|
|
|
|
export default {
|
|
appDirectory: "app",
|
|
basename: basePath,
|
|
ssr: true,
|
|
} satisfies Config;
|