aboutsummaryrefslogtreecommitdiff
path: root/web/pw-frontend/src/main.ts
blob: b9ec46641a0adc8b1b5279dcee0ada91831f6e66 (plain)
1
2
3
4
5
6
7
8
9
10
import App from './App.svelte'
import init_wasm_module from "planetwars-rs";

const wasm_url = new URL("../planetwars-rs/pkg/planetwars_rs_bg.wasm", import.meta.url)

init_wasm_module(wasm_url).then(() => {
  const app = new App({
    target: document.getElementById('app')
  })
})