mirror of
https://github.com/morgan9e/chatgpt-web
synced 2026-04-14 00:14:04 +09:00
10 lines
217 B
TypeScript
10 lines
217 B
TypeScript
// This can be false if you're using a fallback (i.e. SPA mode)
|
|
import './app.scss'
|
|
import App from './App.svelte'
|
|
|
|
const app = new App({
|
|
target: document.getElementById('app') as HTMLElement
|
|
})
|
|
|
|
export default app
|