Currently, I am in the process of developing an application using Quasar (Vue) where I have stored my database keys in a .env file. Recently, I encountered an issue when attempting to switch to another instance and updating the keys in the env file. Despite making changes to the keys, the app continued to call the old values of the variables, indicating that they may be cached somehow.
To access the env file, I am utilizing dotenv.
In order to resolve this issue, I have already attempted resetting the browser history and running the following command:
npm cache clean --force
Can anyone provide guidance on how I can effectively reset the env files?