This commit is contained in:
Irwan Cahyono 2025-08-07 23:54:10 +07:00
parent be5361349e
commit e377cc4783
4 changed files with 12 additions and 19 deletions

View File

@ -8,20 +8,18 @@ RUN npm install --legacy-peer-deps
COPY . .
#RUN npm run build
RUN npm run generate
# RUN ls -lah .output/public
# RUN test -f .output/public/index.html
RUN npm run build
# Gunakan NGINX untuk menyajikan SPA
FROM nginx:1.29.0-alpine-slim
# Dockerfile untuk server Nuxt 3
FROM node:24-alpine
RUN rm -rf /usr/share/nginx/html/*
WORKDIR /app
RUN rm /etc/nginx/conf.d/default.conf
COPY --from=builder /app/.output ./.output
COPY --from=builder /app/package*.json ./
COPY --from=builder /app/dist /usr/share/nginx/html
COPY nginx.conf /etc/nginx/conf.d/default.conf
RUN npm install --production --legacy-peer-deps
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]
EXPOSE 3000
CMD ["node", ".output/server/index.mjs"]

View File

@ -3,7 +3,7 @@ services:
build: .
container_name: freekake-nuxt-container
ports:
- "3000:80"
- "3000:3000"
env_file:
- .env
environment:

View File

@ -73,11 +73,5 @@ export default defineNuxtConfig({
},
ssr: false,
nitro: {
prerender: {
crawlLinks: false,
routes: ["/"]
}
}
});

View File

@ -10,6 +10,7 @@ export default defineNuxtPlugin((nuxtApp) => {
}
},
async onResponseError({ response, options }) {
const originalRequest = { ...options };
if (response.status === 401) {