diff options
-rw-r--r-- | .changeset/thirty-taxis-lick.md | 5 | ||||
-rw-r--r-- | packages/astro/config.d.ts | 2 |
2 files changed, 6 insertions, 1 deletions
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 |