summaryrefslogtreecommitdiff
path: root/packages/integrations/netlify
diff options
context:
space:
mode:
Diffstat (limited to 'packages/integrations/netlify')
-rw-r--r--packages/integrations/netlify/README.md11
1 files changed, 2 insertions, 9 deletions
diff --git a/packages/integrations/netlify/README.md b/packages/integrations/netlify/README.md
index 0dc6f3db8..e8591d5a0 100644
--- a/packages/integrations/netlify/README.md
+++ b/packages/integrations/netlify/README.md
@@ -75,8 +75,7 @@ The [Netlify Blog post on Astro](https://www.netlify.com/blog/how-to-deploy-astr
To configure this adapter, pass an object to the `netlify()` function call in `astro.config.mjs` - there's only one possible configuration option:
-<details>
- <summary><strong>dist</strong></summary>
+### dist
We build to the `dist` directory at the base of your project. To change this, use the `dist` option:
@@ -99,12 +98,7 @@ And then point to the dist in your `netlify.toml`:
directory = "dist/functions"
```
-</details>
-
-<details>
- <summary>
- <strong>binaryMediaTypes</strong>
- </summary>
+### binaryMediaTypes
> This option is only needed for the Functions adapter and is not needed for Edge Functions.
@@ -127,7 +121,6 @@ export function get() {
});
}
```
-</details>
## Examples