Skip to content

Commit

Permalink
chore: Update Svelte template to Svelte 5 (#1184)
Browse files Browse the repository at this point in the history
Co-authored-by: Aaron <aaronklinker1@gmail.com>
  • Loading branch information
PatatoBit and aklinker1 authored Nov 17, 2024
1 parent 226e6c9 commit cfdc6b3
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions templates/svelte/src/entrypoints/popup/main.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import './app.css';
import { mount } from 'svelte';
import App from './App.svelte';
import './app.css';

const app = new App({
const app = mount(App, {
target: document.getElementById('app')!,
});

Expand Down

0 comments on commit cfdc6b3

Please # to comment.