summaryrefslogtreecommitdiff
path: root/examples/fast-build/astro.config.mjs
diff options
context:
space:
mode:
authorGravatar Jonathan Neal <jonathantneal@hotmail.com> 2021-12-21 22:01:28 -0500
committerGravatar GitHub <noreply@github.com> 2021-12-21 22:01:28 -0500
commit29976c6de0d52f8cde49598c6b26a1f9e3ec846e (patch)
treec762e76fab75f96e5aa325d223d8085876d2b7a1 /examples/fast-build/astro.config.mjs
parente07c1cbd7ea46c57d637f981aaed43a733a846b1 (diff)
downloadastro-29976c6de0d52f8cde49598c6b26a1f9e3ec846e.tar.gz
astro-29976c6de0d52f8cde49598c6b26a1f9e3ec846e.tar.zst
astro-29976c6de0d52f8cde49598c6b26a1f9e3ec846e.zip
format (#2246)
Diffstat (limited to '')
-rw-r--r--examples/fast-build/astro.config.mjs8
1 files changed, 3 insertions, 5 deletions
diff --git a/examples/fast-build/astro.config.mjs b/examples/fast-build/astro.config.mjs
index 32eca8696..38a4a1140 100644
--- a/examples/fast-build/astro.config.mjs
+++ b/examples/fast-build/astro.config.mjs
@@ -2,10 +2,8 @@ import { imagetools } from 'vite-imagetools';
// @ts-check
export default /** @type {import('astro').AstroUserConfig} */ ({
- renderers: [
- "@astrojs/renderer-vue"
- ],
+ renderers: ['@astrojs/renderer-vue'],
vite: {
- plugins: [imagetools()]
- }
+ plugins: [imagetools()],
+ },
});