Why can't I access process.env.TEST with dot notation, what is the difference between dot notation and brackets notation here?
.env:
TEST=123
src/routes/index.svelte:
<script>
import '$lib/test';
</script>
src/lib/test.js:
import dotenv from 'dotenv';
dotenv.config();
console.log(process.env.TEST, process.env['TEST']); // undefined 123
(I wrote the code in a new SvelteKit project, I did not change anything else except for the codes above)