changed docker and ports

This commit is contained in:
2025-09-02 20:37:32 +02:00
parent 1826086186
commit 3f9381a80c
2 changed files with 8 additions and 4 deletions

View File

@@ -8,9 +8,13 @@ export default defineConfig({
plugins: [react(), svgr(), tailwindcss(), tsconfigPaths()], plugins: [react(), svgr(), tailwindcss(), tsconfigPaths()],
server: { server: {
host: "0.0.0.0", host: "0.0.0.0",
port: 8003, allowedHosts: ["admin.insta.the1s.de"],
watch: { port: 8103,
usePolling: true, watch: { usePolling: true },
hmr: {
host: "admin.insta.the1s.de",
port: 8103,
protocol: "wss",
}, },
}, },
}); });

View File

@@ -18,7 +18,7 @@ services:
container_name: admin-frontend container_name: admin-frontend
build: ./admin build: ./admin
ports: ports:
- "8003:8003" - "8103:8103"
environment: environment:
- CHOKIDAR_USEPOLLING=true - CHOKIDAR_USEPOLLING=true
volumes: volumes: