mirror of
https://github.com/revanced/revanced-website.git
synced 2025-05-24 10:32:13 +02:00
8 lines
216 B
TypeScript
8 lines
216 B
TypeScript
import { sveltekit } from '@sveltejs/kit/vite';
|
|
import Icons from 'unplugin-icons/vite';
|
|
import { defineConfig } from 'vite';
|
|
|
|
export default defineConfig({
|
|
plugins: [sveltekit(), Icons({ compiler: 'svelte' })]
|
|
});
|