// New modular application entry point import { startApp } from './app' import { registerSW } from 'virtual:pwa-register' import 'vue-sonner/style.css' // Simple periodic service worker updates const intervalMS = 60 * 60 * 1000 // 1 hour registerSW({ onRegistered(r) { r && setInterval(() => { r.update() }, intervalMS) }, onOfflineReady() { console.log('App ready to work offline') } }) // Start the modular application startApp()