mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
19 lines
302 B
JavaScript
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'
|
|
}
|
|
}
|
|
}
|