perf(vite): avoid extra resolve call for `resolveId` in layers (#27971)

This commit is contained in:
Daniel Roe 2024-07-02 19:26:58 +01:00 committed by GitHub
parent a238a83e9d
commit ebe6c7122c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 18 additions and 10 deletions

View File

@ -123,6 +123,7 @@ export const bundle: NuxtBuilder['bundle'] = async (nuxt) => {
ctx.config.build!.watch = undefined
}
// TODO: this may no longer be needed with most recent vite version
if (nuxt.options.dev) {
// Identify which layers will need to have an extra resolve step.
const layerDirs: string[] = []
@ -133,17 +134,24 @@ export const bundle: NuxtBuilder['bundle'] = async (nuxt) => {
}
}
if (layerDirs.length > 0) {
ctx.config.plugins!.push({
name: 'nuxt:optimize-layer-deps',
enforce: 'pre',
async resolveId (source, _importer) {
if (!_importer) { return }
const importer = normalize(_importer)
if (layerDirs.some(dir => importer.startsWith(dir))) {
// Reverse so longest/most specific directories are searched first
layerDirs.sort().reverse()
ctx.nuxt.hook('vite:extendConfig', (config) => {
const dirs = [...layerDirs]
config.plugins!.push({
name: 'nuxt:optimize-layer-deps',
enforce: 'pre',
async resolveId (source, _importer) {
if (!_importer || !dirs.length) { return }
const importer = normalize(_importer)
const layerIndex = dirs.findIndex(dir => importer.startsWith(dir))
// Trigger vite to optimize dependencies imported within a layer, just as if they were imported in final project
await this.resolve(source, join(nuxt.options.srcDir, 'index.html'), { skipSelf: true }).catch(() => null)
}
},
if (layerIndex !== -1) {
dirs.splice(layerIndex, 1)
await this.resolve(source, join(nuxt.options.srcDir, 'index.html'), { skipSelf: true }).catch(() => null)
}
},
})
})
}
}