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.
 
 
 
 
cy_pda/vue.config.js

14 lines
362 B

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