remove nginx

This commit is contained in:
2026-04-10 00:25:43 +02:00
parent 9223e4d35f
commit d0bdffbb23
6 changed files with 9 additions and 13 deletions
+1 -5
View File
@@ -3,8 +3,4 @@ WORKDIR /app
COPY package*.json ./
RUN npm ci
COPY . .
RUN npm run build
FROM nginx:alpine
COPY --from=builder /app/dist /usr/share/nginx/html
COPY nginx-frontend.conf /etc/nginx/conf.d/default.conf
RUN npm run build
+1 -1
View File
@@ -6,7 +6,7 @@ export default defineConfig({
server: {
proxy: {
'/api': {
target: 'http://localhost:3301',
target: 'http://localhost:3001',
changeOrigin: true,
},
},