mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-23 14:15:13 +00:00
fix(cli): add back flags for generate and add _export flag (#7334)
This commit is contained in:
parent
29ebccaa65
commit
e87bad4cce
@ -21,7 +21,7 @@ export default {
|
|||||||
const config = await cmd.getNuxtConfig({
|
const config = await cmd.getNuxtConfig({
|
||||||
dev: false,
|
dev: false,
|
||||||
target: TARGETS.static,
|
target: TARGETS.static,
|
||||||
_build: cmd.argv.build
|
_export: true
|
||||||
})
|
})
|
||||||
const nuxt = await cmd.getNuxt(config)
|
const nuxt = await cmd.getNuxt(config)
|
||||||
|
|
||||||
|
@ -56,7 +56,8 @@ export default {
|
|||||||
async run (cmd) {
|
async run (cmd) {
|
||||||
const config = await cmd.getNuxtConfig({
|
const config = await cmd.getNuxtConfig({
|
||||||
dev: false,
|
dev: false,
|
||||||
_build: cmd.argv.build
|
_build: cmd.argv.build,
|
||||||
|
_generate: true
|
||||||
})
|
})
|
||||||
|
|
||||||
if (config.target === TARGETS.static) {
|
if (config.target === TARGETS.static) {
|
||||||
|
Loading…
Reference in New Issue
Block a user