fix:统一为3000端口

This commit is contained in:
“dongming”
2025-12-28 23:29:03 +08:00
parent acabcfa7ed
commit be1eebb5f6
2 changed files with 9 additions and 0 deletions

View File

@@ -1,7 +1,13 @@
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
// https://vite.dev/config/
export default defineConfig({
plugins: [vue()],
server: {
host: '0.0.0.0',
port: 3000,
allowedHosts: true
},
})