Files
card-quartett-carousel/vite.config.ts
2023-06-02 17:31:30 +02:00

10 lines
229 B
TypeScript

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