mirror of
https://github.com/pheralb/svgl.git
synced 2025-12-29 08:01:36 +08:00
11 lines
301 B
TypeScript
11 lines
301 B
TypeScript
import { defineConfig } from "vite";
|
|
|
|
// Plugins:
|
|
import tailwindcss from "@tailwindcss/vite";
|
|
import { sveltekit } from "@sveltejs/kit/vite";
|
|
import contentCollections from "@content-collections/vite";
|
|
|
|
export default defineConfig({
|
|
plugins: [tailwindcss(), sveltekit(), contentCollections()],
|
|
});
|