MeterSphere/frontend/vue.config.js

49 lines
1.1 KiB
JavaScript
Raw Normal View History

2020-09-27 12:46:32 +08:00
const path = require('path')
function resolve(dir) {
return path.join(__dirname, dir)
}
2020-02-03 14:01:28 +08:00
module.exports = {
2020-07-09 17:04:34 +08:00
productionSourceMap: true,
devServer: {
port: 8080,
proxy: {
//1.8需求:增加分享功能,不登陆即可看到文档页面。所以代理设置增加了(?!/document)文档页面的相关信息
// ['^((?!/login)']: {
['^((?!/login)(?!/document))']: {
2020-07-09 17:04:34 +08:00
target: 'http://localhost:8081',
ws: true,
},
2020-07-09 17:04:34 +08:00
}
},
pages: {
business: {
entry: "src/business/main.js",
template: "src/business/index.html",
filename: "index.html"
2020-02-03 14:01:28 +08:00
},
2020-07-09 17:04:34 +08:00
login: {
entry: "src/login/login.js",
template: "src/login/login.html",
filename: "login.html"
},
document: {
entry: "src/document/document.js",
template: "src/document/document.html",
filename: "document.html"
2020-02-03 14:01:28 +08:00
}
2020-09-27 12:46:32 +08:00
},
configureWebpack: {
devtool: 'source-map',
resolve: {
alias: {
'@': resolve('src')
}
}
},
chainWebpack(config) {
config.plugins.delete('prefetch')
2020-07-09 17:04:34 +08:00
}
2020-02-03 15:16:37 +08:00
};