fix: update default port values and app target configuration

Change default port values from empty strings to 0 in InstanceDetail form
Update APP_TARGET in vite config to use local network IP for development
This commit is contained in:
2026-04-05 22:45:14 +08:00
parent 838042f239
commit 98788b8c9e
2 changed files with 5 additions and 5 deletions

View File

@@ -1,7 +1,7 @@
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
const APP_TARGET = 'localhost:8080'
const APP_TARGET = '192.168.1.19:8080'
export default defineConfig({
define: {