perf: lazy load selected UI provider (AEG-X-002)

This commit is contained in:
2026-08-08 16:29:36 +09:00
parent 4e0a0bc02b
commit 9665f7791f
9 changed files with 101 additions and 15 deletions
+1 -1
View File
@@ -10,5 +10,5 @@ const app = createApp(App);
app.use(createPinia());
app.use(router);
app.use(VueQueryPlugin, { queryClient });
resolveUiProvider(import.meta.env.VITE_UI_ADAPTER).install(app);
(await resolveUiProvider(import.meta.env.VITE_UI_ADAPTER)).install(app);
app.mount('#app');