Files
automatisch/packages/web/src/config/app.ts
2021-10-04 20:25:18 +02:00

10 lines
156 B
TypeScript

type Config = {
[key: string]: string,
};
const config: Config = {
graphqlUrl: process.env.REACT_APP_GRAPHQL_URL as string,
};
export default config;