康巴易测肤/伤疤uniapp小程序类
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

1 个月前
1234567891011121314151617
  1. // 配置uni-read-pages自动加载路由表
  2. const TransformPages = require('uni-read-pages')
  3. const {webpack} = new TransformPages()
  4. module.exports = {
  5. configureWebpack: {
  6. plugins: [
  7. new webpack.DefinePlugin({
  8. ROUTES: webpack.DefinePlugin.runtimeValue(() => {
  9. const tfPages = new TransformPages({
  10. includes: ['path', 'name', 'aliasPath']
  11. });
  12. return JSON.stringify(tfPages.routes)
  13. }, true )
  14. })
  15. ]
  16. }
  17. }