10 lines
156 B
TypeScript
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;
|