2026-02-20 12:27:52 +01:00
|
|
|
/**
|
|
|
|
|
* OxiCloud - App bootstrap
|
|
|
|
|
* Isolated startup trigger for the main application initializer.
|
|
|
|
|
*/
|
2026-04-13 15:09:10 +02:00
|
|
|
import { initApp } from './main.js';
|
2026-02-20 12:27:52 +01:00
|
|
|
|
|
|
|
|
if (document.readyState === 'loading') {
|
2026-04-13 15:09:10 +02:00
|
|
|
document.addEventListener('DOMContentLoaded', initApp);
|
|
|
|
|
} else {
|
|
|
|
|
initApp();
|
2026-02-20 12:27:52 +01:00
|
|
|
}
|