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.
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
ESM bundle files uses imports without file extentions. Check https://cdn.jsdelivr.net/npm/[email protected]/dist/esm/index.js
import
As a result of this it's not possible to use ESM bundle directly in the browser. They all respond 404 Not Found.
404 Not Found
File imports in ESM bundles should include .js file extentions.
.js
<script type="module"> import { Observable } from "https://cdn.jsdelivr.net/npm/[email protected]/dist/esm/index.js"; console.log(Observable); </script>
Then you will see many network errors.
https://jsfiddle.net/bh4y70fs/
7.5.6
No response
The text was updated successfully, but these errors were encountered:
Dupe: #4416
Sorry, something went wrong.
No branches or pull requests
Uh oh!
There was an error while loading. Please reload this page.
Describe the bug
ESM bundle files uses
import
s without file extentions. Check https://cdn.jsdelivr.net/npm/[email protected]/dist/esm/index.jsAs a result of this it's not possible to use ESM bundle directly in the browser. They all respond
404 Not Found
.Expected behavior
File imports in ESM bundles should include
.js
file extentions.Reproduction code
Then you will see many network errors.
Reproduction URL
https://jsfiddle.net/bh4y70fs/
Version
7.5.6
Environment
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: