main.ts 434 B

12345678910
  1. /**
  2. * Web application entry: thin bootstrap over the shell library. Everything —
  3. * loader holding, module-table seeding, AppRoot gate, plugin assembly — lives
  4. * in @deepseek-ai/dsh-client-web; this file only finds the mount point.
  5. */
  6. import { AppWebEntry } from '@deepseek-ai/dsh-client-web'
  7. const el = document.getElementById('root')
  8. if (el === null) throw new Error('web app: missing #root')
  9. void new AppWebEntry(el).run()