node-go/packages/server/src/config.js
2020-02-05 16:45:01 -08:00

17 lines
No EOL
290 B
JavaScript

const production = {
apiAddress: null,
endpoint: null
}
const development = {
apiAddress: 'http://localhost:8000',
endpoint: 'http://localhost:3000'
}
const config = process.env.REACT_APP_ENVIRONMENT === 'production'
? production
: development
export default {
...config
}