@merkaly/nuxt 0.1.9 → 0.1.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/module.json +1 -1
- package/dist/module.mjs +1 -1
- package/package.json +1 -1
package/dist/module.json
CHANGED
package/dist/module.mjs
CHANGED
|
@@ -103,7 +103,7 @@ const module = defineNuxtModule({
|
|
|
103
103
|
const bootstrapConfigPath = rootResolver.resolve("bootstrap.config.ts");
|
|
104
104
|
let BootstrapConfig;
|
|
105
105
|
if (existsSync(bootstrapConfigPath)) {
|
|
106
|
-
|
|
106
|
+
await import(bootstrapConfigPath).then((result) => BootstrapConfig = result.default).catch(() => BootstrapConfig = {});
|
|
107
107
|
}
|
|
108
108
|
if (!BootstrapConfig) {
|
|
109
109
|
BootstrapConfig = {};
|