import { mount } from 'svelte'; import './app.css'; import Landing from './Landing.svelte'; // Entry for the standalone landing page (served at "/" by the gateway; the game SPA lives at // /app/ and /telegram/). Mounts into the same #app node as the SPA's main.ts. export default mount(Landing, { target: document.getElementById('app')! });