This commit is contained in:
philipcheung 2025-03-16 16:34:27 +08:00
parent ac4fd8d006
commit 97a242826d
2 changed files with 2 additions and 6 deletions

View File

@ -6,12 +6,8 @@ COPY package.json .
RUN npm install
RUN npm i -g serve
COPY . .
RUN npm run build
EXPOSE 3000
CMD [ "serve", "-s", "dist", "-l", "3000" ]
CMD ["npm", "run", "build"]

View File

@ -12,7 +12,7 @@ export default defineConfig({
server: {
port: 3000,
strictPort: true,
host: '127.0.0.1',
host: true,
origin: "http://0.0.0.0:3000",
},
})