mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-14 18:13:54 +00:00
28 lines
557 B
JavaScript
28 lines
557 B
JavaScript
|
export default {
|
||
|
spa: {
|
||
|
alias: 's',
|
||
|
type: 'boolean',
|
||
|
description: 'Launch in SPA mode'
|
||
|
},
|
||
|
universal: {
|
||
|
alias: 'u',
|
||
|
type: 'boolean',
|
||
|
description: 'Launch in Universal mode (default)'
|
||
|
},
|
||
|
'config-file': {
|
||
|
alias: 'c',
|
||
|
type: 'string',
|
||
|
default: 'nuxt.config.js',
|
||
|
description: 'Path to Nuxt.js config file (default: nuxt.config.js)'
|
||
|
},
|
||
|
version: {
|
||
|
type: 'boolean',
|
||
|
description: 'Display the Nuxt version'
|
||
|
},
|
||
|
help: {
|
||
|
alias: 'h',
|
||
|
type: 'boolean',
|
||
|
description: 'Display this message'
|
||
|
}
|
||
|
}
|