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