export const EnvironmentProvider: React.FC<EnvironmentProps> = ({ children }) => (
<EnvironmentContext.Provider value={{
APP_NAME: import.meta.env.VITE_APP_NAME,
GQL_URI: import.meta.env.VITE_GQL_URI
}}>
{ children }
</EnvironmentContext.Provider>
)
when using import.meta to load env variables vscode only recognize url variable... so how i can tell typescript that there are custom variables in import.meta?