Confused between the .dev.vars and wrangler.jsonc/wrangler.toml
✅SolvedWorkers
I'm new to cloudflare ecosystem, using workers there I got to know I can define my env vars in the .dev.vars and wrangler.jsoc, where wrangler.jsonc shouldn'y contain the sensitive vars .dev.vrs should have secrets but then I do the typegen, the env vars in the wrangler.jsonc get's the type of value like if the value of URL: http://localhost:3000 in the wrangler.jsonc the url will be it's type in the worker-configuration.d.ts, whereas if the env vars from .dev.vars will have it's type strign properly in the worker-configuration.d.ts. I'm unable to understadn plus how will a particular environment's env var will be used in a a particular environment. Please help me.