aboutsummaryrefslogtreecommitdiffstats
path: root/src/config.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/config.js')
-rw-r--r--src/config.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/config.js b/src/config.js
index eb6f08be9..03d201425 100644
--- a/src/config.js
+++ b/src/config.js
@@ -31,6 +31,8 @@ export const LOCAL_TODOS_FRONTEND_URL = 'http://localhost:4000';
31export const PRODUCTION_TODOS_FRONTEND_URL = 'https://app.franztodos.com'; 31export const PRODUCTION_TODOS_FRONTEND_URL = 'https://app.franztodos.com';
32export const DEVELOPMENT_TODOS_FRONTEND_URL = 'https://development--franz-todos.netlify.com'; 32export const DEVELOPMENT_TODOS_FRONTEND_URL = 'https://development--franz-todos.netlify.com';
33 33
34export const CDN_URL = 'https://cdn.franzinfra.com';
35
34export const GA_ID = !isDevMode ? 'UA-74126766-10' : 'UA-74126766-12'; 36export const GA_ID = !isDevMode ? 'UA-74126766-10' : 'UA-74126766-12';
35 37
36export const KEEP_WS_LOADED_USID = '0a0aa000-0a0a-49a0-a000-a0a0a0a0a0a0'; 38export const KEEP_WS_LOADED_USID = '0a0aa000-0a0a-49a0-a000-a0a0a0a0a0a0';
@@ -100,7 +102,7 @@ export const DEFAULT_APP_SETTINGS = {
100 showMessageBadgeWhenMuted: true, 102 showMessageBadgeWhenMuted: true,
101 showDragArea: false, 103 showDragArea: false,
102 enableSpellchecking: true, 104 enableSpellchecking: true,
103 spellcheckerLanguage: '["en-US"]', 105 spellcheckerLanguage: 'en-us',
104 darkMode: process.platform === 'darwin' ? nativeTheme.shouldUseDarkColors : false, // We can't use refs from `./environment` at this time 106 darkMode: process.platform === 'darwin' ? nativeTheme.shouldUseDarkColors : false, // We can't use refs from `./environment` at this time
105 locale: '', 107 locale: '',
106 fallbackLocale: 'en-US', 108 fallbackLocale: 'en-US',
@@ -193,6 +195,7 @@ export const ALLOWED_PROTOCOLS = [
193 'https:', 195 'https:',
194 'http:', 196 'http:',
195 'ftp:', 197 'ftp:',
198 'franz:',
196]; 199];
197 200
198export const PLANS = { 201export const PLANS = {