You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
362 B
15 lines
362 B
|
2 years ago
|
const TransformPages = require('uni-read-pages')
|
||
|
|
const tfPages = new TransformPages({
|
||
|
|
includes:['path','name','meta']
|
||
|
|
})
|
||
|
|
// const tfPages = new TransformPages()
|
||
|
|
module.exports = {
|
||
|
|
configureWebpack: {
|
||
|
|
plugins: [
|
||
|
|
new tfPages.webpack.DefinePlugin({
|
||
|
|
ROUTES: JSON.stringify(tfPages.routes)
|
||
|
|
})
|
||
|
|
]
|
||
|
|
}
|
||
|
|
}
|