-
Notifications
You must be signed in to change notification settings - Fork 22
Open
Description
vue.config.js
// vue.config.js
module.exports = {
// webpack-dev-server 相关配置
devServer: {
// 调试端口
// port: 8989
port: 8085, // 端口号
host: 'localhost',
https: false, // https:{type:Boolean}
open: true, //配置自动启动浏览器
proxyTable: {
'/api': {
target: 'xxxxx', // 接口的域名
// secure: false, // 如果是https接口,需要配置这个参数
changeOrigin: true, // 如果接口跨域,需要进行这个参数配置
pathRewrite: {
'^/api': ''
}
}
},
}
}
Metadata
Metadata
Assignees
Labels
No labels