mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-22 13:45:18 +00:00
fix outDir default
This commit is contained in:
parent
bda5805b2d
commit
904f813ae9
@ -71,7 +71,7 @@ async function main () {
|
|||||||
// Target defaults
|
// Target defaults
|
||||||
tryImport(__dirname, `./targets/${target.target}`) || tryImport(config.rootDir, target.target),
|
tryImport(__dirname, `./targets/${target.target}`) || tryImport(config.rootDir, target.target),
|
||||||
// Generic defaults
|
// Generic defaults
|
||||||
{ outDir: resolve(config.buildDir, `dist/${config.target}`), outName: 'index.js' }
|
{ outDir: resolve(config.buildDir, `dist/${target.target}`), outName: 'index.js' }
|
||||||
)
|
)
|
||||||
|
|
||||||
const hooks = new Hookable()
|
const hooks = new Hookable()
|
||||||
|
Loading…
Reference in New Issue
Block a user