nitropack-nightly 2.12.2-20250716-173745.6df77925 → 2.12.3-20250717-065208.e11a7435
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/core/index.mjs +1 -1
- package/dist/meta/index.mjs +1 -1
- package/package.json +1 -1
package/dist/core/index.mjs
CHANGED
|
@@ -749,7 +749,7 @@ async function _loadUserConfig(configOverrides = {}, opts = {}) {
|
|
|
749
749
|
static: getConf("static"),
|
|
750
750
|
dev: true,
|
|
751
751
|
compatibilityDate: compatibilityDate || fallbackCompatibilityDate
|
|
752
|
-
}).then((p) => p?._meta?.name).catch(() => "nitro-dev") : "nitro-dev";
|
|
752
|
+
}).then((p) => p?._meta?.name || "nitro-dev").catch(() => "nitro-dev") : "nitro-dev";
|
|
753
753
|
} else if (!preset) {
|
|
754
754
|
preset = await resolvePreset("", {
|
|
755
755
|
static: getConf("static"),
|
package/dist/meta/index.mjs
CHANGED
package/package.json
CHANGED