bugfix: remove trailing / to urlPrefix

This commit is contained in:
Jiehong Ma 2021-09-22 22:02:57 +02:00
parent 0d2b7a8150
commit 223a4b23ba
2 changed files with 14 additions and 3 deletions

View File

@ -1,3 +1,14 @@
# Jq Offline (WASM)
# Jq Play Offline (WASM)
TODO
[Jq Play Offline](https://jiehong.gitlab.io/jq_offline/) is a web assembly
version of [jqplay](https://jqplay.org/), allowing you to _run_ the full featured
jq in your browser, without sending anything to any backend.
## Key features
- Reliable: this is the full fledge jq, not a re-implementation;
- Safe: no json leaves your browser, nobody knows what you do with it;
- Fast: not network round trip means faster results, and web assembly makes things _fast_;
- Offline: once you've opened the site once, you no longer need an internet connection.
Give it a try!

View File

@ -12,7 +12,7 @@
let CLI = await new Aioli({
tool: "jq",
version: "1.6",
urlPrefix: "./wasm/",
urlPrefix: "./wasm",
loading: "eager",
}, {
urlAioli: "./js/aioli.worker.js",