https://cli.vuejs.org/zh/config/#vue-config-jsvue
// vue.config.js 配置說明
// 這裏只列一部分,具體配置慘考文檔啊
module.exports = {
// baseUrl type:{string} default:'/'
// 將部署應用程序的基本URL
// 將部署應用程序的基本URL。
// 默認狀況下,Vue CLI假設您的應用程序將部署在域的根目錄下。
// https://www.my-app.com/。若是應用程序部署在子路徑上,則須要使用此選項指定子路徑。例如,若是您的應用程序部署在https://www.foobar.com/my-app/,集baseUrl到'/my-app/'.web
baseUrl: process.env.NODE_ENV === 'production' ? '/online/' : '/',api
// lintOnSave:{ type:Boolean default:true } 問你是否使用eslint
lintOnSave: true,
// 若是您不須要生產時的源映射,那麼將此設置爲false能夠加速生產構建
productionSourceMap: false,
// devServer:{type:Object} 3個屬性host,port,https
// 它支持webPack-dev-server的全部選項跨域
devServer: {
port: 8085, // 端口號
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>'
}
}, // 配置多個代理
}
}瀏覽器