Mot
Mot
> PPS: is there a way to exclude certain variables from being encrypted also, you can currently optionally use `set` instead of `encrypt` to individually encrypt keys. `dotenvx set KEY...
thanks for the additional info. i'll duplicate the problem tomorrow with a helloworld sveltekit guide and see if I can debug the issue. today celebrating the 4th of July over...
> Because of the way dotenvx exposes the env variables before starting the actual build one would expect it to be irrelevant how sveltekit handles env variables at buildtime indeed,...
i haven't. seems like sveltekit's environment variable handling is pretty complicated: https://github.com/sveltejs/kit/discussions/6718#discussioncomment-3614188 so i guess my first question is - do you have any backend code or is this all...
I've updated the Vercel guide to recommend using `dotenvx.get('KEY')`. If using Vercel, I recommend using `dotenvx.get` in code. `dotenvx.get` is a new feature of dotenvx - allowing you to do...
Also if using pages router you can do the following: ``` import * as dotenvx from '@dotenvx/dotenvx'; export default function Page({ hello }: { hello: string }) { return Hello...
my initial thought is maybe vercel ignores `.env` files even if committed to code? or maybe you have a `.vercelignore` file? (vercel's many gotchas are starting to get on my...
hmm @mattiasbonte do you have a way to access `/var/task` on vercel to list the contents? maybe the following? ``` $ vercel dev $ ls -al /var/task/ ```
so strange. yes, you can give any name to it. give that a try i suppose.
> About the .env.production not being found. Which is strange since I've replaced all instances with prodenv instead of .env.production. I feel like I'm missing something Did you also change...