mirror of
https://git.suyu.dev/suyu/website.git
synced 2025-12-22 13:46:09 +01:00
14 lines
289 B
TypeScript
14 lines
289 B
TypeScript
import { sveltekit } from "@sveltejs/kit/vite";
|
|
import { defineConfig } from "vite";
|
|
import { imagetools } from "vite-imagetools";
|
|
|
|
export default defineConfig({
|
|
plugins: [
|
|
imagetools({
|
|
defaultDirectives: new URLSearchParams({
|
|
format: "webp",
|
|
}),
|
|
}),
|
|
sveltekit(),
|
|
],
|
|
});
|