uni-halo/vue.config.js
2022-12-06 15:08:29 +08:00

33 lines
614 B
JavaScript

//vue.config.js
const TransformPages = require('uni-read-pages')
const {
webpack
} = new TransformPages()
module.exports = {
devServer: {
disableHostCheck: true,
proxy: {
"/api": {
target: "https://b.925i.cn",
changeOrigin: true,
secure: true,
pathRewrite: {
"^/api": ""
}
}
}
},
configureWebpack: {
plugins: [
new webpack.DefinePlugin({
ROUTES: webpack.DefinePlugin.runtimeValue(() => {
const tfPages = new TransformPages({
includes: ['path', 'name', 'aliasPath', "meta"]
});
return JSON.stringify(tfPages.routes)
}, true)
})
]
}
}