mirror of
https://github.com/apricote/ein-pfeil-am-rechten-fleck.de.git
synced 2026-01-13 13:01:02 +00:00
15 lines
340 B
TypeScript
15 lines
340 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({
|
|
as: "metadata",
|
|
format: "avif;webp;png",
|
|
}),
|
|
}),
|
|
sveltekit(),
|
|
],
|
|
});
|