summaryrefslogtreecommitdiff
path: root/packages/integrations/netlify
diff options
context:
space:
mode:
authorGravatar Sarah Rainsberger <sarah@rainsberger.ca> 2022-08-08 14:07:38 -0300
committerGravatar GitHub <noreply@github.com> 2022-08-08 12:07:38 -0500
commit9894b3dcde876bdc81cd207e40cf7f9023d8fdfa (patch)
treec154014176f0bcb4a2b37aa6e92a37d673f43565 /packages/integrations/netlify
parent2c71a992021633e9569e36e91550fdf34606d9e7 (diff)
downloadastro-9894b3dcde876bdc81cd207e40cf7f9023d8fdfa.tar.gz
astro-9894b3dcde876bdc81cd207e40cf7f9023d8fdfa.tar.zst
astro-9894b3dcde876bdc81cd207e40cf7f9023d8fdfa.zip
remove details tags from integration READMEs (#4198)
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