We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a034543 commit 1645c12Copy full SHA for 1645c12
2 files changed
Dockerfile
@@ -6,7 +6,7 @@ RUN git clone --depth 1 https://github.com/ReaJason/MemShellParty.git . && \
6
rm -rf vul integration-test tools
7
8
# https://hub.docker.com/r/oven/bun
9
-FROM --platform=$BUILDPLATFORM oven/bun:1.3.6 AS frontend
+FROM --platform=$BUILDPLATFORM oven/bun:1.3.11 AS frontend
10
11
ARG ROUTE_ROOT_PATH="/"
12
ARG CONTEXT_PATH=""
web/react-router.config.ts
@@ -1,10 +1,12 @@
1
import type { Config } from '@react-router/dev/config';
2
import { glob } from 'node:fs/promises';
3
import { createGetUrl, getSlugs } from 'fumadocs-core/source';
4
+import { env } from "node:process";
5
const getUrl = createGetUrl('/docs');
export default {
+ basename: env.VITE_APP_BASE_PATH,
ssr: false,
future: {
v8_middleware: true,
0 commit comments