astro/examples/fast-build/astro.config.mjs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

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 03:01:28 +00:00
renderers: ['@astrojs/renderer-vue'],
vite: {
2021-12-22 03:01:28 +00:00
plugins: [imagetools()],
},
});