1 全局安装vue-cli3
**npm i -g @vue/cli**
2 全局安装webpack和webpack-cli
**npm i -g webpack**
3 创建项目
**vue create xxxx(项目名称)**
4.新建一个config.js,可以自行配置项目
路径如下图👇
代码如下
**module.exports = {
baseUrl: process.env.NODE_ENV === 'production' ? './' : '/',
devServer: {
port: 8383, // 端口号
host: 'localhost',
https: false, // https:{type:Boolean}
open: true, //配置自动启动浏览器
// proxy: 'http://localhost:4000' // 配置跨域处理,只有一个代理
proxy: {
'/api': {
target: '<url>',
ws: true,
changeOrigin: true
},
'/foo': {`在这里插入代码片`
target: '<other_url>'
}
}, // 配置多个代理
}
}**