Update favicon and site title

This commit is contained in:
CycroftX
2026-02-03 20:30:11 +05:30
parent 61423f951a
commit cbc7cd1bd3
19 changed files with 3276 additions and 42 deletions

View File

@@ -11,6 +11,15 @@ export default defineConfig(({ mode }) => ({
hmr: {
overlay: false,
},
proxy: {
// Proxy API requests to bypass CORS during development
'/api': {
target: 'https://uat.eventifyplus.com',
changeOrigin: true,
secure: false,
rewrite: (path) => path,
},
},
},
plugins: [react(), mode === "development" && componentTagger()].filter(Boolean),
resolve: {