We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 943c355 commit 3d1cd2fCopy full SHA for 3d1cd2f
.gitignore
@@ -19,3 +19,4 @@
19
20
# Output
21
/dist/
22
+/static/
Makefile
@@ -19,9 +19,9 @@ GOROOT:=$(shell go env GOROOT)
# make import: copy the required wasm_exec.js file from the Go toolchain (output in vendor/)
import = vendor/wasm_exec.js
-$(import): $(GOROOT)/misc/wasm/wasm_exec.js
+$(import): $(GOROOT)/lib/wasm/wasm_exec.js
23
mkdir -p vendor
24
- cp "$(GOROOT)/misc/wasm/wasm_exec.js" vendor/
+ cp "$(GOROOT)/lib/wasm/wasm_exec.js" vendor/
25
26
import: $(import)
27
0 commit comments