Fix frontend login flow: merge v3 auth routes, fix vite proxy, SPA redirect

This commit is contained in:
2026-07-07 18:57:11 +08:00
parent 82b460fe6f
commit 8aeee9ebc7
4 changed files with 31 additions and 4 deletions
@@ -108,6 +108,10 @@ initializeChatwootEvents();
initializeAnalyticsEvents();
initalizeRouter();
window.onload = () => {
if (document.readyState === 'complete') {
app.mount('#app');
};
} else {
window.onload = () => {
app.mount('#app');
};
}