Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Merged
merged 1 commit into from
Jan 13, 2024

Commits on Jan 13, 2024

  1. Remove extra \\ at load string on external-libraries.json entries

    There is an extra escaped `\` between the double quotes of the library URL, which when importing it, it inserts the code like this:
    
    ```javascript
    await loadScript(\"https://threejs.org/build/three.js\")
    ```
    
    instead of
    
    ```javascript
    await loadScript("https://threejs.org/build/three.js")
    ```
    munshkr committed Jan 13, 2024
    Configuration menu
    Copy the full SHA
    13df126 View commit details
    Browse the repository at this point in the history