diff options
author | 2021-08-23 21:08:16 +0000 | |
---|---|---|
committer | 2021-08-23 21:08:16 +0000 | |
commit | 69272dc8d11e1128786b84ff3e4dedb91676d092 (patch) | |
tree | 27229bae82503578cd3ddacc6ef6c31cc9bbc24b /examples | |
parent | f9cd031033d03a5f22b4a1272bbe97f92b845ef7 (diff) | |
download | astro-69272dc8d11e1128786b84ff3e4dedb91676d092.tar.gz astro-69272dc8d11e1128786b84ff3e4dedb91676d092.tar.zst astro-69272dc8d11e1128786b84ff3e4dedb91676d092.zip |
[ci] yarn format
Diffstat (limited to 'examples')
-rw-r--r-- | examples/starter/astro.config.mjs | 8 | ||||
-rw-r--r-- | examples/with-tailwindcss/astro.config.mjs | 2 |
2 files changed, 6 insertions, 4 deletions
diff --git a/examples/starter/astro.config.mjs b/examples/starter/astro.config.mjs index 81dadc1ea..dc8566d60 100644 --- a/examples/starter/astro.config.mjs +++ b/examples/starter/astro.config.mjs @@ -7,6 +7,8 @@ // 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} */ ( + { + // ... + } +); diff --git a/examples/with-tailwindcss/astro.config.mjs b/examples/with-tailwindcss/astro.config.mjs index e94cfab62..878577d74 100644 --- a/examples/with-tailwindcss/astro.config.mjs +++ b/examples/with-tailwindcss/astro.config.mjs @@ -10,7 +10,7 @@ export default /** @type {import('astro').AstroUserConfig} */ ({ // Enable Tailwind by telling Astro where your Tailwind config file lives. devOptions: { - tailwindConfig: './tailwind.config.js', + tailwindConfig: './tailwind.config.js', }, // Enable the Preact renderer to support Preact JSX components. renderers: ['@astrojs/renderer-preact'], |