diff options
author | 2022-11-13 19:00:14 -0800 | |
---|---|---|
committer | 2022-11-13 23:00:14 -0400 | |
commit | df8092b007798c19b4441b54414f497f9adede9c (patch) | |
tree | 2df3bd0eaca45cb0d54fa6b18bd8e087514c3fb9 | |
parent | 07827083ae806763edbe3573d55720487e95e0af (diff) | |
download | astro-df8092b007798c19b4441b54414f497f9adede9c.tar.gz astro-df8092b007798c19b4441b54414f497f9adede9c.tar.zst astro-df8092b007798c19b4441b54414f497f9adede9c.zip |
Fix typo in image integration documentatation (#5388)
-rw-r--r-- | packages/integrations/image/README.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/integrations/image/README.md b/packages/integrations/image/README.md index b96fe5754..4dd3817c6 100644 --- a/packages/integrations/image/README.md +++ b/packages/integrations/image/README.md @@ -78,7 +78,7 @@ First, install the `sharp` package using your package manger. If you're using np ```sh npm install sharp ``` -Then, update the integration in you `astro.config.*` file to use the built-in `sharp` image transformer. +Then, update the integration in your `astro.config.*` file to use the built-in `sharp` image transformer. ```astro title="astro.config.mjs" --- import image from '@astrojs/image'; |