mirror of
https://github.com/stackblitz/bolt.new
synced 2025-06-26 18:17:50 +00:00
14 lines
174 B
TypeScript
14 lines
174 B
TypeScript
declare global {
|
|
interface Window {
|
|
ENV: {
|
|
OSS_HOST: string;
|
|
};
|
|
}
|
|
}
|
|
|
|
export const env = {
|
|
get OSS_HOST() {
|
|
return window.ENV?.OSS_HOST ?? '';
|
|
},
|
|
};
|