summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
Diffstat (limited to 'examples')
-rw-r--r--examples/starter/astro.config.mjs8
-rw-r--r--examples/with-tailwindcss/astro.config.mjs2
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'],