diff options
author | 2021-08-23 21:17:45 +0000 | |
---|---|---|
committer | 2021-08-23 21:17:45 +0000 | |
commit | 884a2ea76a4dabab28f412a2c965687fb20acd5c (patch) | |
tree | e826defeda8d05dba5ee3376f3a35cde4dab202b /docs/src | |
parent | 2538325a4689832a1d0246b293ecf8d14dce89f8 (diff) | |
download | astro-884a2ea76a4dabab28f412a2c965687fb20acd5c.tar.gz astro-884a2ea76a4dabab28f412a2c965687fb20acd5c.tar.zst astro-884a2ea76a4dabab28f412a2c965687fb20acd5c.zip |
[ci] yarn format
Diffstat (limited to 'docs/src')
-rw-r--r-- | docs/src/pages/reference/configuration-reference.md | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/docs/src/pages/reference/configuration-reference.md b/docs/src/pages/reference/configuration-reference.md index 7ec4176a0..c181c0ea2 100644 --- a/docs/src/pages/reference/configuration-reference.md +++ b/docs/src/pages/reference/configuration-reference.md @@ -16,10 +16,11 @@ You can view the full configuration API (including information about default con // You can disable this by removing "@ts-check" and `@type` comments below. // @ts-check -export default /** @type {import('astro').AstroUserConfig} */ ({ - // ... -}); - +export default /** @type {import('astro').AstroUserConfig} */ ( + { + // ... + } +); ``` ## Snowpack Config |