diff --git a/.changeset/real-starfishes-turn.md b/.changeset/real-starfishes-turn.md new file mode 100644 index 000000000..bccddb3fe --- /dev/null +++ b/.changeset/real-starfishes-turn.md @@ -0,0 +1,5 @@ +--- +'astro': patch +--- + +Fix typing of `integrations` array in user config diff --git a/packages/astro/src/@types/astro.ts b/packages/astro/src/@types/astro.ts index 70969f7ec..6e3638e52 100644 --- a/packages/astro/src/@types/astro.ts +++ b/packages/astro/src/@types/astro.ts @@ -161,7 +161,7 @@ export interface AstroUserConfig { * } * ``` */ - integrations?: AstroIntegration[]; + integrations?: Array; /** * @docs