8 lines
213 B
TypeScript
8 lines
213 B
TypeScript
// dw kitten, esbuild handles this
|
|
import env from "build-system-env";
|
|
Object.assign(import.meta, { env });
|
|
declare global {
|
|
interface ImportMeta {
|
|
readonly env: { [key: string]: string | undefined };
|
|
}
|
|
}
|