diff --git a/Dockerfile b/Dockerfile index dc729ea..2e6a78e 100755 --- a/Dockerfile +++ b/Dockerfile @@ -1,18 +1,18 @@ -FROM node:lts-alpine as build-stage -WORKDIR /app -COPY package*.json ./ -RUN npm install -COPY . . -RUN npm run build +# FROM node:lts-alpine as build-stage +# WORKDIR /app +# COPY package*.json ./ +# RUN npm install +# COPY . . +# RUN npm run build -FROM nginx:stable-alpine as production-stage -COPY --from=build-stage /app/build /usr/share/nginx/html -COPY --from=build-stage /app/nginx.conf /etc/nginx/nginx.conf +# FROM nginx:stable-alpine as production-stage +# COPY --from=build-stage /app/build /usr/share/nginx/html +# COPY --from=build-stage /app/nginx.conf /etc/nginx/nginx.conf +# EXPOSE 32166 +# CMD ["nginx", "-g", "daemon off;"] + +FROM nginx:stable-alpine +COPY /build /usr/share/nginx/html +COPY /nginx.conf /etc/nginx/nginx.conf EXPOSE 32166 CMD ["nginx", "-g", "daemon off;"] - -# FROM nginx:stable-alpine -# COPY /dist /usr/share/nginx/html -# COPY /nginx.conf /etc/nginx/nginx.conf -# EXPOSE 32166 -# CMD ["nginx", "-g", "daemon off;"] \ No newline at end of file diff --git a/vite.config.ts b/vite.config.ts index b273b1c..00cc9da 100755 --- a/vite.config.ts +++ b/vite.config.ts @@ -25,7 +25,7 @@ export default defineConfig({ outDir: 'build', emptyOutDir: true, chunkSizeWarningLimit: 4096, - cssCodeSplit: true, - cssMinify: true, + // cssCodeSplit: true, + // cssMinify: true, } })