Nuxt/test/fixtures/with-config/nuxt.config.js
2016-12-27 15:24:52 +01:00

19 lines
302 B
JavaScript

module.exports = {
router: {
base: '/test/'
},
cache: true,
plugins: ['~plugins/test.js'],
loading: '~components/loading',
env: {
bool: true,
num: 23,
string: 'Nuxt.js'
},
build: {
extend (config, options) {
config.devtool = 'nosources-source-map'
}
}
}