aswi2022code-of-duty-gitlab/frontend/src/config/conf.ts @ 14588cb6
1 |
// Configuration object for the application
|
---|---|
2 |
const conf = { |
3 |
baseUrl: |
4 |
process.env.REACT_APP_DEV_ENV === 'true' |
5 |
? 'http://localhost:8080' |
6 |
: '/api', |
7 |
}
|
8 |
|
9 |
export default conf |