如何更改vite应用端口
如果您正在更改VITE应用程序端口,请按照该步骤进行操作。
"scripts": {
"dev": "vite --port 3006",
"build": "vite build",
"preview": "vite preview"
}
If you are change the vite application port please follow the procedure.
"scripts": {
"dev": "vite --port 3006",
"build": "vite build",
"preview": "vite preview"
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
尝试将您的端口添加到vite.config.ts:
Try add your port into vite.config.ts:
您可以修改package.json文件中的dev脚本并将
--port
设置为您想要的。you can modify the dev script in the
package.json
file and set the--port
to the one you want .在 vite.config.ts 中,您可以单独管理生产和开发的端口。 PORT服务器:生产。 PORT 预览:开发
in vite.config.ts you can manage the port separately for production and development. PORT server: production. PORT preview: development
除在config 或在命令行上提供它,也可以在
.env
文件中配置端口 -.env
/.env中的任何内容。 .ts
使用loadenv
的文件:In addition to defining it in the config or providing it on the command line, it's also possible to configure the port in
.env
files - anything in.env
/.env.production
etc that's prefixed withVITE_
will be automatically available to your app viaimport.meta.env
and can be loaded into thevite.config.ts
file usingloadEnv
: