astro/examples/fast-build/astro.config.mjs
2021-12-22 16:11:05 -05:00

9 lines
208 B
JavaScript

import { imagetools } from 'vite-imagetools';
// @ts-check
export default /** @type {import('astro').AstroUserConfig} */ ({
renderers: ['@astrojs/renderer-vue'],
vite: {
plugins: [imagetools()],
},
});