Update preview.ts

This commit is contained in:
syuilo 2024-09-08 09:56:56 +09:00
parent 982cee4ea9
commit f4863524d7
1 changed files with 2 additions and 0 deletions

View File

@ -13,6 +13,7 @@ import locale from './locale.js';
import { commonHandlers, onUnhandledRequest } from './mocks.js'; import { commonHandlers, onUnhandledRequest } from './mocks.js';
import themes from './themes.js'; import themes from './themes.js';
import '../src/style.scss'; import '../src/style.scss';
import { DI } from '../src/di.js';
const appInitialized = Symbol(); const appInitialized = Symbol();
@ -77,6 +78,7 @@ queueMicrotask(() => {
return; return;
} }
app[appInitialized] = true; app[appInitialized] = true;
app.provide(DI.serverMetadata, {}); // TODO
loadTheme(applyTheme); loadTheme(applyTheme);
components(app); components(app);
directives(app); directives(app);