summaryrefslogtreecommitdiff
path: root/examples/fast-build/astro.config.mjs
blob: f40bc1ccafdcc65d35126c438ca84b29a9d5b8ed (plain) (blame)
1
2
3
4
5
6
7
8
9
import { imagetools } from 'vite-imagetools';

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