diff --git a/cwd-admin/src/env.d.ts b/cwd-admin/src/env.d.ts index 284e3cc..4a1cc77 100644 --- a/cwd-admin/src/env.d.ts +++ b/cwd-admin/src/env.d.ts @@ -7,3 +7,8 @@ interface ImportMetaEnv { interface ImportMeta { readonly env: ImportMetaEnv; } + +declare module "*.json" { + const value: any; + export default value; +}