mirror of
https://github.com/ProjectSegfault/website.git
synced 2024-11-08 17:12:24 +05:30
13 lines
219 B
TypeScript
13 lines
219 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;
|