Vue 如何修改默认启动端口、浏览器自动访问
Vue修改默认启动端口的几种方法

module.exports = defineConfig({
transpileDependencies: true,
devServer:{
host:'localhost',
port:8088,
open:true
}
})
本文来自博客园,作者:Raymon*码记,转载请注明原文链接:https://www.cnblogs.com/RaymonGoGo/p/17957055