We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bbc72a1 commit b049359Copy full SHA for b049359
2 files changed
.changeset/bright-bananas-run.md
@@ -0,0 +1,5 @@
1
+---
2
+"astro": patch
3
4
+
5
+Fixes accidental internal `setOnSetGetEnv` parameter rename that caused runtime errors
packages/astro/templates/env/module.mjs
@@ -26,6 +26,8 @@ const _internalGetSecret = (key) => {
26
};
27
28
// used while generating the virtual module
29
-setOnSetGetEnv((_reset) => {
+// biome-ignore lint/correctness/noUnusedFunctionParameters: `reset` is used by the generated code
30
+// biome-ignore lint/correctness/noUnusedVariables: `reset` is used by the generated code
31
+setOnSetGetEnv((reset) => {
32
// @@ON_SET_GET_ENV@@
33
});
0 commit comments