10 lines
168 B
TypeScript
10 lines
168 B
TypeScript
|
/// <reference types="vite/client" />
|
||
|
|
||
|
interface ImportMetaEnv {
|
||
|
readonly NEXT_PUBLIC_WEBSITE_URL: string;
|
||
|
}
|
||
|
|
||
|
interface ImportMeta {
|
||
|
readonly env: ImportMetaEnv;
|
||
|
}
|