main.js raw

   1  import App from "./App.svelte";
   2  import "../public/global.css";
   3  import { initConfig } from "./config.js";
   4  
   5  // Initialize relay configuration before creating the app
   6  // This sets up standalone mode detection and relay URL handling
   7  initConfig();
   8  
   9  const app = new App({
  10    target: document.body,
  11    props: {
  12      name: "world",
  13    },
  14  });
  15  
  16  export default app;
  17