I have test.env file in my functions folder.
test.env
TEST="TEST NAME"
And in my functions I have:
app.get("/testvars", (req, res) => {
console.log("ENV", process.env.TEST);
});
I then run firebase serve, which logs ENV undefined when invoked
Why is this not working?
And I am using firebase-functions 3.23.0 with 11.8.0 firebase cli