fix(ui): hidden components on hard reload
Some checks failed
Build BAB Application Deployment Artifact / build (push) Failing after 1m14s

This commit is contained in:
2026-03-15 22:44:07 -04:00
parent 26bc33a095
commit 2874ea3be1
2 changed files with 17 additions and 6 deletions

View File

@@ -81,13 +81,13 @@ export default defineConfig(function () {
// This works around CORS problems when developing locally, using the Appwrite backend
proxy: {
'/api': {
target: 'https://apidev.bab.toal.ca/',
target: 'https://appwrite.toal.ca/',
changeOrigin: true,
secure: false,
rewrite: (path) => path.replace(/^\/api/, ''),
},
'/api/v1/realtime': {
target: 'wss://apidev.bab.toal.ca',
target: 'wss://appwrite.toal.ca',
changeOrigin: true,
rewrite: (path) => path.replace(/^\/api/, ''),
secure: false,