1.检查本机vue版本
vue -V
2.升级vue3.0命令
npm install -g @vue/cli
3.创建完项目后,在项目根目录新增vue.config.js文件,插入代码(简洁)
1 module.exports = { 2 runtimeCompiler: true, //是否使用包含运行时编译器的 Vue 构建版本 3 publicPath: ‘‘, 4 productionSourceMap: false, //不在production环境使用SourceMap 5 devServer: { 6 //跨域 7 port: 9527, // 端口号 8 open: true, //配置自动启动浏览器 9 proxy: { 10 // 配置跨域处理 可以设置多个 11 ‘/api‘: { 12 target: ‘xxxx‘, 13 ws: true, 14 changeOrigin: true 15 } 16 } 17 } 18 }
官网配置地址:https://cli.vuejs.org/zh/config/#vue-config-js
需要注意的是,baseUrl从 Vue CLI 3.3 起已弃用,需要使用publicPath。
原文地址:https://www.cnblogs.com/e-cat/p/10558595.html
时间: 2024-10-10 12:20:38