We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 73c379e commit 0ebb883Copy full SHA for 0ebb883
misc/landing-page/src/pages/demos/eval.astro
@@ -135,7 +135,7 @@ end"
135
136
try {
137
popcorn = await window.Popcorn.init({
138
- bundlePath: "/wasm/eval.avm",
+ bundlePath: "../wasm/eval.avm",
139
wasmDir: "/wasm/",
140
debug: true,
141
onStdout: (text) => displayLog(text, { isError: false }),
misc/landing-page/src/pages/demos/game-of-life.astro
@@ -137,7 +137,7 @@ import Section from "../../components/Section.astro";
async function init() {
await Popcorn.init({
- bundlePath: "/wasm/gol.avm",
+ bundlePath: "../wasm/gol.avm",
142
debug: false,
143
onStdout: (text: string) => console.log(text),
0 commit comments