From 905eabf7305949cc8fe2e20e7473f4aaa0ca9cda Mon Sep 17 00:00:00 2001 From: Florian <45694132+flo-bit@users.noreply.github.com> Date: Fri, 30 Jan 2026 10:33:58 +0100 Subject: [PATCH] add plugin --- vite.config.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/vite.config.ts b/vite.config.ts index f4dc264..f66b649 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -1,9 +1,10 @@ import tailwindcss from '@tailwindcss/vite'; import { sveltekit } from '@sveltejs/kit/vite'; import { defineConfig } from 'vite'; +import { sveltekitOG } from '@ethercorps/sveltekit-og/plugin'; export default defineConfig({ - plugins: [sveltekit(), tailwindcss()], + plugins: [sveltekit(), tailwindcss(), sveltekitOG()], server: { host: '127.0.0.1', port: 5179 -- 2.51.2