uni-halo/vue.config.js
2023-05-14 11:08:20 +08:00

32 lines
617 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": "/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)
})
]
}
}