mirror of
https://github.com/Xevion/xevion.dev.git
synced 2026-01-31 08:26:41 -06:00
- Remove @ethercorps/sveltekit-og and bits-ui dependencies - Implement direct Satori + Resvg rendering pipeline - Add OgImage.svelte component for template generation - Create /internal/ogp preview page for development - Load fonts from node_modules via fs for production compatibility - Add 2s startup delay before OG image regeneration
16 lines
391 B
TypeScript
16 lines
391 B
TypeScript
import { sveltekit } from "@sveltejs/kit/vite";
|
|
import tailwindcss from "@tailwindcss/vite";
|
|
import { defineConfig } from "vite";
|
|
import Icons from "unplugin-icons/vite";
|
|
import { jsonLogger } from "./vite-plugin-json-logger";
|
|
|
|
export default defineConfig({
|
|
plugins: [
|
|
jsonLogger(),
|
|
tailwindcss(),
|
|
sveltekit(),
|
|
Icons({ compiler: "svelte" }),
|
|
],
|
|
clearScreen: false,
|
|
});
|