website/vite.config.ts

8 lines
204 B
TypeScript
Raw Normal View History

2023-02-17 10:22:14 -05:00
import { sveltekit } from '@sveltejs/kit/vite';
import { defineConfig } from 'vite';
2023-02-20 15:55:09 -05:00
import { imagetools } from 'vite-imagetools';
2023-02-17 10:22:14 -05:00
export default defineConfig({
2023-02-20 15:55:09 -05:00
plugins: [sveltekit(), imagetools()]
2023-02-17 10:22:14 -05:00
});