I am using Vue + Vite + TS and I am building a few libraries that I would like to build and import somewhere else.
The point is that I set some environment variables using the dotenv, hence I can use things like import.meta.env.MY_VARIABLE.
But they are being availed during the run time of the place I run them, hence the env files need to be placed in the component that requires those libs.
I would like to know if there is way so they get replaced in the build time.