Astro: @astrojs/[email protected] Release

Release date:
December 16, 2022
Previous version:
@astrojs/[email protected] (released December 8, 2022)
Magnitude:
0 Diff Delta
Contributors:
0 total committers
Data confidence:
Commits:

Top Contributors in @astrojs/[email protected]

Could not determine top contributors for this release.

Directory Browser for @astrojs/[email protected]

We haven't yet finished calculating and confirming the files and directories changed in this release. Please check back soon.

Release Notes Published

Minor Changes

  • #5297 d2960984c Thanks @natemoo-re! - Introduces the experimental Prerender API.

    Note This API is not yet stable and is subject to possible breaking changes!

    • Deploy an Astro server without sacrificing the speed or cacheability of static HTML.
    • The Prerender API allows you to statically prerender specific pages/ at build time.

    Usage - First, run astro build --experimental-prerender or enable experimental: { prerender: true } in your astro.config.mjs file. - Then, include export const prerender = true in any file in the pages/ directory that you wish to prerender.