chore: switch dev server to port 5174

Vite default 5173 frequently conflicts with parallel local projects.
Move Tusk's vite dev server (and tauri devUrl) to 5174 so it can
coexist with another project running on the default port.
This commit is contained in:
dev
2026-05-06 19:30:54 +03:00
parent 4f7afc17f4
commit b41c84dab8
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -5,7 +5,7 @@
"identifier": "com.tusk.dbm",
"build": {
"frontendDist": "../dist",
"devUrl": "http://localhost:5173",
"devUrl": "http://localhost:5174",
"beforeDevCommand": "npm run dev",
"beforeBuildCommand": "npm run build"
},
+1 -1
View File
@@ -14,7 +14,7 @@ export default defineConfig({
},
clearScreen: false,
server: {
port: 5173,
port: 5174,
strictPort: true,
host: host || false,
hmr: host