mirror of
https://github.com/aelve/guide.git
synced 2024-11-23 04:07:14 +03:00
7 lines
141 B
JavaScript
7 lines
141 B
JavaScript
const { API_URL, PORT } = process.env
|
|
|
|
export default {
|
|
apiUrl: API_URL || 'https://staging.guide.aelve.com:4400/',
|
|
port: PORT || 5000
|
|
}
|