retropilot-client/src/config.js

21 lines
391 B
JavaScript
Raw Permalink Normal View History

2022-01-09 19:13:00 -07:00
const config = {
/**
* The address at which the website is hosted.
*/
2022-03-21 17:40:12 -06:00
publicUrl: process.env.REACT_APP_PUBLIC_URL,
2022-01-09 19:13:00 -07:00
/**
* The address at which the API is accessible.
*/
2022-03-21 17:40:12 -06:00
apiUrl: process.env.REACT_APP_API_URL,
2022-01-09 19:13:00 -07:00
/**
* The name displayed in the website title.
*/
websiteName: process.env.REACT_APP_WEBSITE_NAME,
};
2022-03-21 17:40:12 -06:00
console.log({ config });
2022-01-09 19:13:00 -07:00
export default config;