fix(kit): handle errors resolving module path

This commit is contained in:
Daniel Roe 2024-03-09 06:30:02 +00:00
parent 63bfaac120
commit 3782ac0a2c
1 changed files with 2 additions and 2 deletions

View File

@ -74,9 +74,9 @@ export async function loadNuxtModuleInstance (nuxtModule: string | NuxtModule, n
const paths = [join(nuxtModule, 'nuxt'), join(nuxtModule, 'module'), nuxtModule]
let error: unknown
for (const path of paths) {
const src = await resolvePath(path)
// Prefer ESM resolution if possible
try {
const src = await resolvePath(path)
// Prefer ESM resolution if possible
nuxtModule = await importModule(src, nuxt.options.modulesDir).catch(() => null) ?? requireModule(src, { paths: nuxt.options.modulesDir })
// nuxt-module-builder generates a module.json with metadata including the version