We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 560eeb0 commit be40ec2Copy full SHA for be40ec2
packages/client/src/main.ts
@@ -6,7 +6,10 @@ import '@unocss/reset/tailwind.css';
6
import 'uno.css';
7
createSvelteToolsClient();
8
const app = new App({
9
- target: document.getElementById('app')
+ target: document.getElementById('app')!
10
});
11
12
+(
13
+ window.parent as Window & { __SVELTE_DEVTOOLS_GLOBAL_HOOK__: any }
14
+).__SVELTE_DEVTOOLS_GLOBAL_HOOK__.emit('app:init');
15
export default app;
0 commit comments