Skip to content

Latest commit

 

History

History
140 lines (75 loc) · 6.97 KB

CHANGELOG.md

File metadata and controls

140 lines (75 loc) · 6.97 KB

@astrojs/prefetch

0.4.1

Patch Changes

0.4.0

Minor Changes

  • #8188 d0679a666 Thanks @ematipico! - Remove support for Node 16. The lowest supported version by Astro and all integrations is now v18.14.1. As a reminder, Node 16 will be deprecated on the 11th September 2023.

  • #8179 6011d52d3 Thanks @matthewp! - Astro 3.0 Release Candidate

0.4.0-rc.1

Minor Changes

0.4.0-beta.0

Minor Changes

  • 1eae2e3f7 Thanks @Princesseuh! - Remove support for Node 16. The lowest supported version by Astro and all integrations is now v18.14.1. As a reminder, Node 16 will be deprecated on the 11th September 2023.

0.3.0

Minor Changes

Patch Changes

0.2.3

Patch Changes

0.2.2

Patch Changes

0.2.1

Patch Changes

0.2.0

Minor Changes

0.1.2

Patch Changes

0.1.1

Patch Changes

0.1.0

Minor Changes

0.0.8

Patch Changes

0.0.7

Patch Changes

0.0.6

Patch Changes

0.0.5

Patch Changes

0.0.4

Patch Changes

0.0.3

Patch Changes

0.0.2

Patch Changes

  • #3736 bd4dac0e Thanks @tony-sull! - Adds a new @astrojs/prefetch integration with the goal of adding near-instant page navigation for Astro projects. HTML and CSS for visible links marked with rel="prefetch" will be preloaded in the browser when the browser is idle.

    astro.config.mjs

    import prefetch from '@astrojs/prefetch';
    export default {
      // ...
      integrations: [prefetch()],
    };
    <!-- Prefetch HTML and stylesheets for the /products page -->
    <a href="/products" rel="prefetch">All Products</a>