sasoria / astro-importmaps-rt

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

astro-importmaps

This example shows you how to use importmaps to map dependencies from bare imports to url-imports.

Using an import map in Layout.astro you can see that react and react-dom are mapped to url imports from an external CDN (esm.sh).

<script type="importmap">
  {
    "imports": {
      "react": "https://esm.sh/react",
      "react-dom": "https://esm.sh/react-dom"
    }
  }
</script>

React and react-dom are set as externals in astro.config.mjs so that they don't get bundled at build.

if (target === "client") {
  vite.build.rollupOptions["external"] = ["react", "react-dom"];
}

Note that the packages are imported over Http3 and gets cached in the browser. This means that you don't have to download react and react-dom on the second page reload.

About

License:MIT License


Languages

Language:Astro 89.2%Language:JavaScript 10.8%