feat: add vite-imagetools

This commit is contained in:
Alexander Daichendt 2022-08-04 15:21:36 +02:00
parent 3244c4c692
commit cb856ad213
10 changed files with 953 additions and 26 deletions

View file

@ -1,8 +1,9 @@
import { sveltekit } from '@sveltejs/kit/vite';
import { imagetools } from 'vite-imagetools';
/** @type {import('vite').UserConfig} */
const config = {
plugins: [sveltekit()]
plugins: [sveltekit(), imagetools()],
};
export default config;