From 788534989d91b08024260ce80e1bc5b131d238a7 Mon Sep 17 00:00:00 2001 From: Quentin Deroubaix <139884126+quentinderoubaix@users.noreply.github.com> Date: Wed, 30 Oct 2024 13:03:39 +0100 Subject: [PATCH] fix: remove preprocessor in ssr-app (#987) --- svelte/ssr-app/svelte.config.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/svelte/ssr-app/svelte.config.js b/svelte/ssr-app/svelte.config.js index 06ab2bb3fa..cbc8752814 100644 --- a/svelte/ssr-app/svelte.config.js +++ b/svelte/ssr-app/svelte.config.js @@ -1,12 +1,11 @@ import adapter from '@sveltejs/adapter-auto'; import {vitePreprocess} from '@sveltejs/vite-plugin-svelte'; -import {directivesPreprocess} from '@agnos-ui/svelte-preprocess'; /** @type {import('@sveltejs/kit').Config} */ const config = { // Consult https://kit.svelte.dev/docs/integrations#preprocessors // for more information about preprocessors - preprocess: [vitePreprocess(), directivesPreprocess()], + preprocess: [vitePreprocess()], kit: { // adapter-auto only supports some environments, see https://kit.svelte.dev/docs/adapter-auto for a list.