mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 08:33:53 +00:00
Merge pull request #2127 from clarkdo/fix_split_error
refactor: fix [TypeError: Cannot read property split of undefined] in tests
This commit is contained in:
commit
6ef631dee0
@ -149,7 +149,7 @@ Options.from = function (_options) {
|
|||||||
_.defaultsDeep(options, modePreset)
|
_.defaultsDeep(options, modePreset)
|
||||||
|
|
||||||
// If no server-side rendering, add appear true transition
|
// If no server-side rendering, add appear true transition
|
||||||
if (options.render.ssr === false) {
|
if (options.render.ssr === false && options.transition) {
|
||||||
options.transition.appear = true
|
options.transition.appear = true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
3
test/fixtures/basic/nuxt.config.js
vendored
3
test/fixtures/basic/nuxt.config.js
vendored
@ -13,5 +13,6 @@ module.exports = {
|
|||||||
},
|
},
|
||||||
bad: null,
|
bad: null,
|
||||||
'': true
|
'': true
|
||||||
}
|
},
|
||||||
|
transition: false
|
||||||
}
|
}
|
||||||
|
3
test/fixtures/spa/nuxt.config.js
vendored
3
test/fixtures/spa/nuxt.config.js
vendored
@ -1,5 +1,6 @@
|
|||||||
module.exports = {
|
module.exports = {
|
||||||
rootDir: __dirname,
|
rootDir: __dirname,
|
||||||
mode: 'spa',
|
mode: 'spa',
|
||||||
dev: false
|
dev: false,
|
||||||
|
transition: false
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user