Merge branch 'custom-theme' of github.com:CoryHawkless/gatehouse-ui into custom-theme

This commit is contained in:
2026-04-26 17:09:31 +09:30
2 changed files with 5 additions and 1 deletions
+1 -1
View File
@@ -4,7 +4,7 @@ FROM oven/bun:1-alpine AS builder
WORKDIR /app
COPY package.json bun.lockb* ./
RUN bun install --frozen-lockfile
RUN bun install
COPY . .
ARG VITE_API_BASE_URL=http://localhost:5000/api/v1
+4
View File
@@ -19,6 +19,7 @@ export default defineConfig(({ mode }) => {
const themeColor = `hsl(${colors.primary})`;
return {
server: {
host: "::",
@@ -65,5 +66,8 @@ export default defineConfig(({ mode }) => {
"@": path.resolve(__dirname, "./src"),
},
},
build: {
target: "esnext",
},
};
});