🐙 Adds types for the env

This commit is contained in:
Rune Harlyk
2024-08-24 21:07:01 +02:00
committed by Rune Harlyk
parent ea7f7dc544
commit 787d202a91
+8
View File
@@ -0,0 +1,8 @@
declare module "app-env" {
interface ENV {
VITE_USE_HOST_NAME: boolean;
}
const appEnv: ENV;
export default appEnv;
}