vite.config.js 284 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 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: 5173 // 默认端口,可根据需要修改 } })