14 lines
267 B
TypeScript
14 lines
267 B
TypeScript
/// <reference types="astro/client" />
|
|
|
|
/**
|
|
* Type definitions for environment variables
|
|
*/
|
|
interface ImportMetaEnv {
|
|
readonly PUBLIC_SITE_URL: string;
|
|
// Add other environment variables here as needed
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv;
|
|
}
|