perf: optimize webapp asset delivery, split admin webapp bundle

This commit is contained in:
3252a8
2026-05-21 10:17:23 +03:00
parent f2c722bdfc
commit db3611487e
15 changed files with 820 additions and 139 deletions
+9
View File
@@ -0,0 +1,9 @@
import AdminPanel from "./admin/AdminPanel.svelte";
import "./styles-admin.css";
window.SubscriptionWebAppAdminPanel = AdminPanel;
window.dispatchEvent(
new CustomEvent("subscription-webapp-admin-ready", {
detail: { AdminPanel },
})
);