mirror of
https://github.com/wekan/wekan.git
synced 2025-12-16 15:30:13 +01:00
17 lines
511 B
JavaScript
17 lines
511 B
JavaScript
// PWA
|
|
if ('serviceWorker' in navigator) {
|
|
window.addEventListener('load', function() {
|
|
navigator.serviceWorker.register('/pwa-service-worker.js');
|
|
});
|
|
}
|
|
|
|
// Import board converter for on-demand conversion
|
|
import '/client/lib/boardConverter';
|
|
import '/client/components/boardConversionProgress';
|
|
|
|
// Import migration manager and progress UI
|
|
import '/client/lib/migrationManager';
|
|
import '/client/components/migrationProgress';
|
|
|
|
// Import cron settings
|
|
import '/client/components/settings/cronSettings';
|