mirror of
https://github.com/maxdorninger/MediaManager.git
synced 2026-04-17 23:53:27 +02:00
8 lines
219 B
TypeScript
8 lines
219 B
TypeScript
import { sveltekit } from '@sveltejs/kit/vite';
|
|
import { defineConfig } from 'vite';
|
|
import { enhancedImages } from '@sveltejs/enhanced-img';
|
|
|
|
export default defineConfig({
|
|
plugins: [enhancedImages(), sveltekit()]
|
|
});
|