mirror of
https://github.com/ReVanced/revanced-website.git
synced 2026-01-11 05:36:17 +00:00
8 lines
216 B
TypeScript
8 lines
216 B
TypeScript
import { sveltekit } from '@sveltejs/kit/vite';
|
|
import { defineConfig } from 'vite';
|
|
import Icons from 'unplugin-icons/vite';
|
|
|
|
export default defineConfig({
|
|
plugins: [sveltekit(), Icons({ compiler: 'svelte' })]
|
|
});
|