mirror of
https://github.com/ProjectSegfault/website.git
synced 2024-11-09 01:22:25 +05:30
10 lines
213 B
TypeScript
10 lines
213 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;
|