2023-11-18 11:09:07 -06:00
|
|
|
import { sveltekit } from '@sveltejs/kit/vite';
|
|
|
|
import { defineConfig } from 'vite';
|
2023-11-18 12:19:29 -06:00
|
|
|
import { imagetools } from 'vite-imagetools';
|
2023-11-18 11:09:07 -06:00
|
|
|
|
|
|
|
export default defineConfig({
|
2023-11-18 12:19:29 -06:00
|
|
|
plugins: [imagetools(), sveltekit()]
|
2023-11-18 11:09:07 -06:00
|
|
|
});
|