mirror of
https://github.com/Xevion/xevion.dev.git
synced 2026-01-31 08:26:41 -06:00
Just a commit point while I'm testing stuff. Already decided at this point to simplify and revert away from PayloadCMS.
9 lines
278 B
TypeScript
9 lines
278 B
TypeScript
import { sveltekit } from "@sveltejs/kit/vite";
|
|
import tailwindcss from "@tailwindcss/vite";
|
|
import { defineConfig } from "vite";
|
|
import Icons from "unplugin-icons/vite";
|
|
|
|
export default defineConfig({
|
|
plugins: [tailwindcss(), sveltekit(), Icons({ compiler: "svelte" })],
|
|
});
|