vue项目怎么修改端口号

vue项目怎么修改端口号,第1张

vue项目怎么修改端口号

方法:1、修改“config\index.js”文件夹中的“port”项内容即可,“port”就表示端口号,该方法能够永久修改VUE项目启动端口号;2、利用“module.exports={devServer:{port:端口号,}”修改。

本文 *** 作环境:windows10系统、Vue2.9.6版,DELL G3电脑。

vue项目怎么修改端口号

1.Vue 2.x

config文件夹中有一个index.js其中部分内容如下,port即为端口号,在这里更改即可。

module.exports = {
  dev: {
    env: require('./dev.env'),
    port: 8080,  // 端口号
    assetsSubDirectory: 'static',
    assetsPublicPath: '/',
    proxyTable: {},
    // CSS Sourcemaps off by default because relative paths are "buggy"
    // with this option, according to the CSS-Loader README
    // (https://github.com/webpack/css-loader#sourcemaps)
    // In our experience, they generally work as expected,
    // just be aware of this issue when enabling this option.
    cssSourceMap: false,
   }
};

2.Vue 3.x

Vue 3.x中修改端口号则需要在项目根目录下创建一个vue.config.js,内容如下。

module.exports = {
  devServer: {
    port: 8080,   // 端口号
  }
};

【相关推荐:《vue.js教程》】

以上就是vue项目怎么修改端口号的详细内容,

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/696092.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-04-22
下一篇 2022-04-22

发表评论

登录后才能评论

评论列表(0条)

保存