link updates

This commit is contained in:
mrfry 2023-04-02 09:39:53 +02:00
parent ba5c3f8e76
commit 20ce2d6ec8
3 changed files with 7 additions and 7 deletions

View file

@ -2,11 +2,11 @@
const useLocalhost = process && process.env.NODE_ENV === 'development'
const constants = {
siteUrl: !useLocalhost ? 'http://frylabs.net/' : 'http://localhost:8080/',
siteUrl: !useLocalhost ? 'https://frylabs.net/' : 'http://localhost:8080/',
apiUrl: !useLocalhost
? 'http://frylabs.net/api/'
? 'https://frylabs.net/api/'
: 'http://localhost:8080/api/',
chatUrl: !useLocalhost ? 'http://frylabs.net/' : 'http://localhost:8080/',
chatUrl: !useLocalhost ? 'https://frylabs.net/' : 'http://localhost:8080/',
mobileWindowWidth: 700,
maxQuestionsToRender: 250,
imageExts: ['gif', 'png', 'jpeg', 'jpg'],