feat: update port configurations for backend and frontend; adjust Dockerfile and docker-compose settings

This commit is contained in:
2025-07-31 17:36:19 +02:00
parent a39e22fab9
commit a2f22ec395
5 changed files with 31 additions and 16 deletions

View File

@@ -7,6 +7,6 @@ RUN npm install
COPY . .
EXPOSE 3003
EXPOSE 7002
CMD ["npm", "start"]

View File

@@ -2,4 +2,11 @@ import { defineConfig } from "vite";
import tailwindcss from "@tailwindcss/vite";
export default defineConfig({
plugins: [tailwindcss()],
server: {
host: "0.0.0.0",
port: 7002,
watch: {
usePolling: true,
},
},
});