0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2024-12-23 21:53:55 -05:00
astro/examples/fast-build/astro.config.mjs

10 lines
208 B
JavaScript
Raw Normal View History

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