finyx_data_frontend/vite.config.ts
2026-01-07 08:13:50 +08:00

18 lines
476 B
TypeScript

import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react()],
server: {
host: '0.0.0.0', // 允许外部访问
port: 5173, // 默认端口
strictPort: false, // 如果端口被占用,自动尝试下一个可用端口
open: false, // 不自动打开浏览器
},
preview: {
host: '0.0.0.0', // 预览模式也允许外部访问
port: 4173,
},
})