From d431fbe4e1b04deba96e10679ebaaeedfcd6a239 Mon Sep 17 00:00:00 2001 From: applemonkey496 <55333787+applemonkey496@users.noreply.github.com> Date: Sun, 28 Aug 2022 20:12:58 -0700 Subject: [PATCH] fix: config type import (#4524) --- .changeset/thirty-taxis-lick.md | 5 +++++ packages/astro/config.d.ts | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 .changeset/thirty-taxis-lick.md diff --git a/.changeset/thirty-taxis-lick.md b/.changeset/thirty-taxis-lick.md new file mode 100644 index 000000000..774d05947 --- /dev/null +++ b/.changeset/thirty-taxis-lick.md @@ -0,0 +1,5 @@ +--- +'astro': patch +--- + +fix import in the config type declarations diff --git a/packages/astro/config.d.ts b/packages/astro/config.d.ts index b43ea268d..fab3fe946 100644 --- a/packages/astro/config.d.ts +++ b/packages/astro/config.d.ts @@ -1,5 +1,5 @@ type ViteUserConfig = import('vite').UserConfig; -type AstroUserConfig = import('./dist/types/@types/astro').AstroUserConfig; +type AstroUserConfig = import('./dist/@types/astro').AstroUserConfig; /** * See the full Astro Configuration API Documentation