1
0

Большое обновление

1. Создание личных проектов
2. Управление командой
3. Приглашение участников
4. Уведомления

и многое другое...
This commit is contained in:
2026-01-18 20:17:02 +07:00
parent 250eac70a7
commit 190b4d0a5e
51 changed files with 6179 additions and 426 deletions

View File

@@ -11,6 +11,17 @@ serverSettings.init()
// Регистрация Service Worker для PWA
registerSW({ immediate: true })
// Автообновление страницы (F5) по таймеру
const initAutoRefresh = () => {
const seconds = window.APP_CONFIG?.AUTO_REFRESH_SECONDS || 0
if (seconds > 0) {
setInterval(() => {
window.location.reload()
}, seconds * 1000)
}
}
initAutoRefresh()
const app = createApp(App)
app.use(createPinia())
app.use(router)