diff options
author | 2022-04-03 23:19:27 -0700 | |
---|---|---|
committer | 2022-04-03 23:19:27 -0700 | |
commit | efc63bfd0f938ab6619210ea57e81a401bd1a9ba (patch) | |
tree | c151ba201762fcba7e4971690e8abbbbd1a293c3 | |
parent | 3f0bc5af57550ee28697ba4910208276bd23fb3f (diff) | |
download | astro-efc63bfd0f938ab6619210ea57e81a401bd1a9ba.tar.gz astro-efc63bfd0f938ab6619210ea57e81a401bd1a9ba.tar.zst astro-efc63bfd0f938ab6619210ea57e81a401bd1a9ba.zip |
fix outdir default type docs
-rw-r--r-- | packages/astro/src/@types/astro.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/astro/src/@types/astro.ts b/packages/astro/src/@types/astro.ts index 058771d8a..5a313c7dc 100644 --- a/packages/astro/src/@types/astro.ts +++ b/packages/astro/src/@types/astro.ts @@ -175,7 +175,7 @@ export interface AstroUserConfig { * @docs * @name outDir * @type {string} - * @default `"./out"` + * @default `"./dist"` * @description Set the directory that `astro build` writes your final build to. * * The value can be either an absolute file system path or a path relative to the project root. |