Created
January 21, 2022 08:04
-
-
Save modster/50fcc3f37a9e1fb7bc8278c0d05f6814 to your computer and use it in GitHub Desktop.
JS Module Imports
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// index.html | |
<script type="importmap"> | |
{ | |
"imports": { | |
"lodash": "/node_modules/lodash-es/lodash.js" | |
} | |
} | |
</script> | |
// After defining this map, you can directly import lodash anywhere in your code: | |
import jQuery from 'jquery'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment