@nuxt/schema-nightly 4.2.0-29344233.e79f117e → 4.2.0-29344661.0b65203b
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/index.mjs +5 -0
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -865,6 +865,11 @@ const experimental = defineResolvers({
|
|
|
865
865
|
$resolve: (val) => {
|
|
866
866
|
return typeof val === "boolean" ? val : false;
|
|
867
867
|
}
|
|
868
|
+
},
|
|
869
|
+
viteEnvironmentApi: {
|
|
870
|
+
$resolve: async (val, get) => {
|
|
871
|
+
return typeof val === "boolean" ? val : await get("future.compatibilityVersion") >= 5;
|
|
872
|
+
}
|
|
868
873
|
}
|
|
869
874
|
}
|
|
870
875
|
});
|