Skip to content

Instantly share code, notes, and snippets.

@modster
Created January 21, 2022 08:04
Show Gist options
  • Save modster/50fcc3f37a9e1fb7bc8278c0d05f6814 to your computer and use it in GitHub Desktop.
Save modster/50fcc3f37a9e1fb7bc8278c0d05f6814 to your computer and use it in GitHub Desktop.
JS Module Imports
// 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