Skip to content

Commit

Permalink
fix(create-vite): ts error in the svelte-ts template (#16031)
Browse files Browse the repository at this point in the history
  • Loading branch information
twharmon committed Feb 27, 2024
1 parent b20d542 commit ff4c834
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/create-vite/template-svelte-ts/src/main.ts
Expand Up @@ -2,7 +2,7 @@ import './app.css'
import App from './App.svelte'

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

export default app

0 comments on commit ff4c834

Please sign in to comment.