-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
env variable stopgap that works in dev and release
astro is really bad/inconsistent at handling this. i thought, 5d71a00 would fix it, but no. now dev is broken. there is already an issue for getting this fixed: withastro/astro#9827 i hope they can deal with this in a somewhat timely manner, so we don't need to rely on such hacks anymore
- Loading branch information
Showing
2 changed files
with
8 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
export default { ...(import.meta as any).env, ...process.env } as { | ||
readonly SUPABASE_URL: string; | ||
readonly SUPABASE_ANON_KEY: string; | ||
readonly HCAPTCHA_SITEKEY: string; | ||
}; |