Nuxt/test/fixtures/basic/nuxt.config.js

49 lines
940 B
JavaScript

import path from 'path'
export default {
generate: {
routes: [
// TODO: generate with {build: false} does not scans pages!
'/noloading',
'/stateless',
'/css',
'/stateful',
'/head',
'/async-data',
'/validate',
'/redirect',
'/users/1',
'/users/2',
{ route: '/users/3', payload: { id: 3000 } }
],
interval: 200,
subFolders: true
},
head: {
titleTemplate: (titleChunk) => {
return titleChunk ? `${titleChunk} - Nuxt.js` : 'Nuxt.js'
}
},
modulesDir: path.join(__dirname, '..', '..', '..', 'node_modules'),
hooks: {
ready(nuxt) {
nuxt.__hook_called__ = true
},
bad: null,
'': true
},
transition: false,
build: {
scopeHoisting: true,
postcss: [
require('postcss-preset-env')({
features: {
'custom-selectors': true
}
}),
require('cssnano')
]
}
}