hydra-synth / hydra-extensions

List of community extensions and other libraries to use in Hydra
8 stars 8 forks source link

Remove extra `\\` at `load` string on `external-libraries.json` entries #22

Closed munshkr closed 8 months ago

munshkr commented 8 months ago

There is an extra escaped \ between the double quotes of the library URL, which when importing it, it inserts the code like this:

await loadScript(\"https://threejs.org/build/three.js\")

instead of

await loadScript("https://threejs.org/build/three.js")