summaryrefslogtreecommitdiff
path: root/examples/fast-build/astro.config.mjs
diff options
context:
space:
mode:
Diffstat (limited to 'examples/fast-build/astro.config.mjs')
-rw-r--r--examples/fast-build/astro.config.mjs11
1 files changed, 11 insertions, 0 deletions
diff --git a/examples/fast-build/astro.config.mjs b/examples/fast-build/astro.config.mjs
new file mode 100644
index 000000000..32eca8696
--- /dev/null
+++ b/examples/fast-build/astro.config.mjs
@@ -0,0 +1,11 @@
+import { imagetools } from 'vite-imagetools';
+
+// @ts-check
+export default /** @type {import('astro').AstroUserConfig} */ ({
+ renderers: [
+ "@astrojs/renderer-vue"
+ ],
+ vite: {
+ plugins: [imagetools()]
+ }
+});