mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-24 06:35:10 +00:00
fix(nuxt): do not include <NuxtWelcome>
when building (#29956)
Co-authored-by: Julien Huang <julien.huang@outlook.fr>
This commit is contained in:
parent
4924e26329
commit
67456810be
@ -408,11 +408,15 @@ async function initNuxt (nuxt: Nuxt) {
|
||||
}
|
||||
|
||||
// Add <NuxtWelcome>
|
||||
addComponent({
|
||||
name: 'NuxtWelcome',
|
||||
priority: 10, // built-in that we do not expect the user to override
|
||||
filePath: resolve(nuxt.options.appDir, 'components/welcome'),
|
||||
})
|
||||
// TODO: revert when deep server component config is properly bundle-split: https://github.com/nuxt/nuxt/pull/29956
|
||||
const islandsConfig = nuxt.options.experimental.componentIslands
|
||||
if (nuxt.options.dev || !(typeof islandsConfig === 'object' && islandsConfig.selectiveClient === 'deep')) {
|
||||
addComponent({
|
||||
name: 'NuxtWelcome',
|
||||
priority: 10, // built-in that we do not expect the user to override
|
||||
filePath: resolve(nuxt.options.appDir, 'components/welcome'),
|
||||
})
|
||||
}
|
||||
|
||||
addComponent({
|
||||
name: 'NuxtLayout',
|
||||
|
Loading…
Reference in New Issue
Block a user