mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-05 21:53:56 +00:00
14 lines
203 B
JavaScript
14 lines
203 B
JavaScript
module.exports = {
|
|
router: {
|
|
base: '/test/'
|
|
},
|
|
cache: true,
|
|
plugins: ['~plugins/test.js'],
|
|
loading: '~components/loading',
|
|
env: {
|
|
bool: true,
|
|
num: 23,
|
|
string: 'Nuxt.js'
|
|
}
|
|
}
|