goploy/web/environment.d.ts
2022-09-16 11:16:01 +08:00

12 lines
252 B
TypeScript

declare global {
namespace NodeJS {
interface ProcessEnv {
VITE_APP_BASE_API: string
}
}
}
// If this file has no import/export statements (i.e. is a script)
// convert it into a module by adding an empty export statement.
export {}