Nuxt/test/fixtures/with-config/nuxt.config.js

19 lines
302 B
JavaScript
Raw Normal View History

2016-12-21 14:03:37 +00:00
module.exports = {
router: {
base: '/test/'
2016-12-21 18:27:36 +00:00
},
cache: true,
2016-12-21 19:51:43 +00:00
plugins: ['~plugins/test.js'],
loading: '~components/loading',
env: {
bool: true,
num: 23,
string: 'Nuxt.js'
2016-12-27 14:04:42 +00:00
},
2016-12-27 14:24:52 +00:00
build: {
extend (config, options) {
config.devtool = 'nosources-source-map'
}
2016-12-21 19:51:43 +00:00
}
2016-12-21 14:03:37 +00:00
}