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