retropilot-client/src/config.js

19 lines
345 B
JavaScript

const config = {
/**
* The address at which the website is hosted.
*/
publicUrl: process.env.PUBLIC_URL,
/**
* The address at which the API is accessible.
*/
apiUrl: process.env.API_URL,
/**
* The name displayed in the website title.
*/
websiteName: process.env.REACT_APP_WEBSITE_NAME,
};
export default config;