summaryrefslogtreecommitdiff
path: root/packages/integrations/netlify
diff options
context:
space:
mode:
Diffstat (limited to 'packages/integrations/netlify')
-rw-r--r--packages/integrations/netlify/CHANGELOG.md17
-rw-r--r--packages/integrations/netlify/package.json2
2 files changed, 18 insertions, 1 deletions
diff --git a/packages/integrations/netlify/CHANGELOG.md b/packages/integrations/netlify/CHANGELOG.md
index fc7e33f4a..e75586d11 100644
--- a/packages/integrations/netlify/CHANGELOG.md
+++ b/packages/integrations/netlify/CHANGELOG.md
@@ -1,5 +1,22 @@
# @astrojs/netlify
+## 1.3.0
+
+### Minor Changes
+
+- [#5297](https://github.com/withastro/astro/pull/5297) [`d2960984c`](https://github.com/withastro/astro/commit/d2960984c59af7b60a3ea472c6c58fb00534a8e6) Thanks [@natemoo-re](https://github.com/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.
+
## 1.2.2
### Patch Changes
diff --git a/packages/integrations/netlify/package.json b/packages/integrations/netlify/package.json
index 43413247f..eec8cdd5a 100644
--- a/packages/integrations/netlify/package.json
+++ b/packages/integrations/netlify/package.json
@@ -1,7 +1,7 @@
{
"name": "@astrojs/netlify",
"description": "Deploy your site to Netlify",
- "version": "1.2.2",
+ "version": "1.3.0",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",