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