mirror of
https://github.com/hyprwm/hyprland-website.git
synced 2024-11-16 18:35:59 +01:00
13 lines
224 B
JavaScript
13 lines
224 B
JavaScript
|
import { sveltekit } from '@sveltejs/kit/vite'
|
||
|
import { defineConfig } from 'vite'
|
||
|
import Icons from 'unplugin-icons/vite'
|
||
|
|
||
|
export default defineConfig({
|
||
|
plugins: [
|
||
|
sveltekit(),
|
||
|
Icons({
|
||
|
compiler: 'svelte'
|
||
|
})
|
||
|
]
|
||
|
})
|