mirror of
https://gitlab.com/MrFry/qmining-data-editor
synced 2025-04-01 20:24:01 +02:00
19 lines
595 B
JavaScript
19 lines
595 B
JavaScript
// eslint-disable-next-line no-undef
|
|
const useLocalhost = process && process.env.NODE_ENV === 'development'
|
|
// eslint-disable-next-line no-undef
|
|
const domain = process && process.env.DOMAIN
|
|
|
|
if (!domain && !useLocalhost) {
|
|
throw new Error('Domain is not defined! Please set DOMAIN env variable!')
|
|
}
|
|
|
|
const constants = {
|
|
domain: domain || 'localhost',
|
|
siteUrl: useLocalhost ? 'http://localhost:8080/' : `https://${domain}/`,
|
|
apiUrl: useLocalhost
|
|
? 'http://localhost:8080/api/'
|
|
: `https://${domain}/api/`,
|
|
maxQuestionsToRender: 250,
|
|
}
|
|
|
|
export default constants
|