From 68b9ecf0fcc16262d3d4871bce422f70d213cf75 Mon Sep 17 00:00:00 2001 From: Ricky de Laveaga Date: Thu, 17 Feb 2022 18:58:32 -0800 Subject: [PATCH] chore(examples):remove config.kit.target from sveltekit example to prevent this error that halts dev or build > config.kit.target is no longer required, and should be removed --- examples/sveltekit/svelte.config.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/examples/sveltekit/svelte.config.js b/examples/sveltekit/svelte.config.js index b2804899..145ec978 100644 --- a/examples/sveltekit/svelte.config.js +++ b/examples/sveltekit/svelte.config.js @@ -3,9 +3,6 @@ import { optimizeImports } from "carbon-preprocess-svelte"; /** @type {import('@sveltejs/kit').Config} */ const config = { preprocess: [optimizeImports()], - kit: { - target: "#svelte", - }, }; export default config;