-
vite
启动后出现 “ Network: use--host
to expose ”
vite v2.3.7 dev server running at:
> Local: http://localhost:3000/
> Network: use `--host` to expose
- 是因为IP没有做配置,所以不能从
IP
启动,需要在vite.config.js
做相应配置:
在vite.config.js
中添加server.host
为0.0.0.0
export default defineConfig({
plugins: [
vue(),
],
// 在文件中添加以下内容
server: {
host: '0.0.0.0'
}
})
- 保存后显示
vite v2.3.7 dev server running at:
> Network: http://192.168.199.127:3000/
> Local: http://localhost:3000/