4 lines
157 B
TypeScript
4 lines
157 B
TypeScript
// Default to false if set to anything other than "true" or unset
|
|
export const IS_RUNNING_ON_CLOUD =
|
|
import.meta.env.VITE_IS_DEPLOYED === "true" || false;
|