From a6a516d9446a50cc32fbd7201b243c63b3a4db43 Mon Sep 17 00:00:00 2001 From: Oscar Lee-Vermeren Date: Mon, 11 Sep 2023 07:52:25 -0400 Subject: [PATCH] fix(types): make `image.service` optional (#8492) --- .changeset/spotty-tools-rhyme.md | 5 +++++ packages/astro/src/@types/astro.ts | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 .changeset/spotty-tools-rhyme.md diff --git a/.changeset/spotty-tools-rhyme.md b/.changeset/spotty-tools-rhyme.md new file mode 100644 index 000000000..a54691a48 --- /dev/null +++ b/.changeset/spotty-tools-rhyme.md @@ -0,0 +1,5 @@ +--- +'astro': patch +--- + +fix(types): make `image.service` optional diff --git a/packages/astro/src/@types/astro.ts b/packages/astro/src/@types/astro.ts index e99077d35..9a0cfd7ad 100644 --- a/packages/astro/src/@types/astro.ts +++ b/packages/astro/src/@types/astro.ts @@ -996,7 +996,7 @@ export interface AstroUserConfig { * } * ``` */ - service: ImageServiceConfig; + service?: ImageServiceConfig; /** * @docs