8 lines
139 B
TypeScript
Executable File
8 lines
139 B
TypeScript
Executable File
import { getEnv } from './util'
|
|
|
|
export const env = getEnv(process.env)
|
|
|
|
export function homePageURL(): string {
|
|
return env.client.url
|
|
}
|