| 1234567891011121314151617 |
- /**
- * 自动构建路由表 API: http://hhyang.cn/src/router/tutorial/rgRoutes.html#%E5%AE%89%E8%A3%85
- */
- // #ifdef H5
- const TransformPages = require('uni-read-pages')
- const tfPages = new TransformPages()
- module.exports = {
- configureWebpack: {
- plugins: [
- new tfPages.webpack.DefinePlugin({
- ROUTES: JSON.stringify(tfPages.routes)
- })
- ]
- }
- }
- // #endif
|