9 lines
208 B
JavaScript
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()],
|
|
},
|
|
});
|