Nuxt/test/fixtures/basic/nuxt.config.js
2017-11-24 17:19:50 +08:00

28 lines
483 B
JavaScript

const path = require('path')
module.exports = {
generate: {
routes: [
'/users/1',
'/users/2',
{ route: '/users/3', payload: { id: 3000 } }
],
interval: 200,
subFolders: true
},
modulesDir: path.join(__dirname, '..', '..', '..', 'node_modules'),
hooks: {
ready(nuxt) {
nuxt.__hook_called__ = true
},
bad: null,
'': true
},
transition: false,
build: {
postcss: [
require('postcss-cssnext')()
]
}
}