mirror of
https://github.com/snapotter-hq/SnapOtter.git
synced 2026-08-03 07:46:42 +02:00
fix: make port 1349 the UI port in all modes
Dev mode: Vite serves UI on 1349, Fastify API on 1350 (proxied) Production/Docker: Fastify serves both UI and API on 1349
This commit is contained in:
@@ -12,9 +12,9 @@ export default defineConfig({
|
||||
dedupe: ["react", "react-dom"],
|
||||
},
|
||||
server: {
|
||||
port: 5173,
|
||||
port: 1349,
|
||||
proxy: {
|
||||
"/api": "http://localhost:1349",
|
||||
"/api": "http://localhost:1350",
|
||||
},
|
||||
},
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user