mirror of
https://github.com/ProjectSegfault/website.git
synced 2024-11-09 17:42:02 +05:30
10 lines
214 B
TypeScript
10 lines
214 B
TypeScript
import { sveltekit } from '@sveltejs/kit/vite';
|
|
import unoCSS from "unocss/vite";;
|
|
import type { UserConfig } from 'vite';
|
|
|
|
const config: UserConfig = {
|
|
plugins: [sveltekit(), unoCSS()]
|
|
};
|
|
|
|
export default config;
|