mirror of
https://gitlab.com/MrFry/qmining-data-editor
synced 2025-04-01 20:24:01 +02:00
10 lines
315 B
JavaScript
10 lines
315 B
JavaScript
// eslint-disable-next-line no-undef
|
|
const useLocalhost = process && process.env.NODE_ENV === 'development'
|
|
|
|
const constants = {
|
|
siteUrl: useLocalhost ? 'http://localhost:8080/' : '/',
|
|
apiUrl: useLocalhost ? 'http://localhost:8080/api/' : '/api/',
|
|
maxQuestionsToRender: 250,
|
|
}
|
|
|
|
export default constants
|