summaryrefslogtreecommitdiff
path: root/examples/fast-build/astro.config.mjs
blob: 38a4a114043cebe15c0dfff9441092db42b42bf8 (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()],
  },
});