I found a strange bug with nodejs on glitch. I use .env file and ‘dotenv’ to read the file. Everything runs fine until I used this kind of config. test={"key":"1234"}
If I console.log(process.env.test), I got {key:1234} while in other platform or my local machine I got {“key”:“1234”} .
The double quotations were removed and made the json string unusable. In my test, it only happens on glitch platform.