opengoal-launcher/src/main.ts
2023-05-06 13:10:54 -04:00

16 lines
340 B
TypeScript

import { initLocales } from "$lib/i18n/i18n";
import "./app.postcss";
import App from "./App.svelte";
import { polyfillCountryFlagEmojis } from "country-flag-emoji-polyfill";
polyfillCountryFlagEmojis();
// Register Translations
initLocales(true);
const app = new App({
target: document.getElementById("app"),
});
export default app;