vue.config.js 362 B

1234567891011121314
  1. const TransformPages = require('uni-read-pages')
  2. const tfPages = new TransformPages({
  3. includes:['path','name','meta']
  4. })
  5. // const tfPages = new TransformPages()
  6. module.exports = {
  7. configureWebpack: {
  8. plugins: [
  9. new tfPages.webpack.DefinePlugin({
  10. ROUTES: JSON.stringify(tfPages.routes)
  11. })
  12. ]
  13. }
  14. }