Fix some cors issues

This commit is contained in:
2025-06-23 10:22:36 -04:00
parent 763aa4f74b
commit 075e7253a0
2 changed files with 17 additions and 15 deletions

View File

@@ -1,10 +1,8 @@
const isDev = import.meta.env.DEV;
const config = {
apiUrl: isDev ? '/api' : 'https://inventory.kent.pw/api',
baseUrl: isDev ? '' : 'https://inventory.kent.pw',
authUrl: isDev ? '/auth-inv' : 'https://inventory.kent.pw/auth-inv',
chatUrl: isDev ? '/chat-api' : 'https://inventory.kent.pw/chat-api'
apiUrl: '/api',
baseUrl: '',
authUrl: '/auth-inv',
chatUrl: '/chat-api'
};
export default config;

View File

@@ -1,15 +1,19 @@
const isDev = import.meta.env.DEV;
const isLocal = window.location.hostname === 'localhost' || window.location.hostname === '127.0.0.1';
// Use proxy paths when on inventory domains to avoid CORS
const useProxy = !isLocal && (window.location.hostname === 'inventory.kent.pw' || window.location.hostname === 'inventory.acot.site');
const liveDashboardConfig = {
auth: isDev ? '/dashboard-auth' : 'https://dashboard.kent.pw/auth',
aircall: isDev ? '/api/aircall' : 'https://dashboard.kent.pw/api/aircall',
klaviyo: isDev ? '/api/klaviyo' : 'https://dashboard.kent.pw/api/klaviyo',
meta: isDev ? '/api/meta' : 'https://dashboard.kent.pw/api/meta',
gorgias: isDev ? '/api/gorgias' : 'https://dashboard.kent.pw/api/gorgias',
analytics: isDev ? '/api/dashboard-analytics' : 'https://dashboard.kent.pw/api/analytics',
typeform: isDev ? '/api/typeform' : 'https://dashboard.kent.pw/api/typeform',
acot: isDev ? '/api/acot' : 'https://dashboard.kent.pw/api/acot',
clarity: isDev ? '/api/clarity' : 'https://dashboard.kent.pw/api/clarity'
auth: isDev || useProxy ? '/dashboard-auth' : 'https://dashboard.kent.pw/auth',
aircall: isDev || useProxy ? '/api/aircall' : 'https://dashboard.kent.pw/api/aircall',
klaviyo: isDev || useProxy ? '/api/klaviyo' : 'https://dashboard.kent.pw/api/klaviyo',
meta: isDev || useProxy ? '/api/meta' : 'https://dashboard.kent.pw/api/meta',
gorgias: isDev || useProxy ? '/api/gorgias' : 'https://dashboard.kent.pw/api/gorgias',
analytics: isDev || useProxy ? '/api/dashboard-analytics' : 'https://dashboard.kent.pw/api/analytics',
typeform: isDev || useProxy ? '/api/typeform' : 'https://dashboard.kent.pw/api/typeform',
acot: isDev || useProxy ? '/api/acot' : 'https://dashboard.kent.pw/api/acot',
clarity: isDev || useProxy ? '/api/clarity' : 'https://dashboard.kent.pw/api/clarity'
};
export default liveDashboardConfig;