| 1234567891011121314151617181920212223242526272829303132 |
- //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)
- })
- ]
- }
- }
|