diff options
author | 2022-08-28 20:12:58 -0700 | |
---|---|---|
committer | 2022-08-29 00:12:58 -0300 | |
commit | d431fbe4e1b04deba96e10679ebaaeedfcd6a239 (patch) | |
tree | 6a2faddebd29d3ce158733c39c3e7d247c2fc30a | |
parent | a2e8e76c303e8d6f39c24c122905a10f06907997 (diff) | |
download | astro-d431fbe4e1b04deba96e10679ebaaeedfcd6a239.tar.gz astro-d431fbe4e1b04deba96e10679ebaaeedfcd6a239.tar.zst astro-d431fbe4e1b04deba96e10679ebaaeedfcd6a239.zip |
fix: config type import (#4524)
-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 |