2025-06-01 19:46:10 +00:00
|
|
|
import * as plugins from './plugins.js';
|
|
|
|
|
|
|
|
|
|
import { html } from '@design.estate/dees-element';
|
|
|
|
|
|
|
|
|
|
import './elements/index.js';
|
2026-02-02 00:36:19 +00:00
|
|
|
import { appRouter } from './router.js';
|
|
|
|
|
|
|
|
|
|
// Initialize router before rendering
|
|
|
|
|
appRouter.init();
|
2025-06-01 19:46:10 +00:00
|
|
|
|
|
|
|
|
plugins.deesElement.render(html`
|
|
|
|
|
<ops-dashboard></ops-dashboard>
|
|
|
|
|
`, document.body);
|