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
This commit is contained in:
Ricky de Laveaga 2022-02-17 18:58:32 -08:00
commit 68b9ecf0fc
No known key found for this signature in database
GPG key ID: 304ED99D9AD50562

View file

@ -3,9 +3,6 @@ import { optimizeImports } from "carbon-preprocess-svelte";
/** @type {import('@sveltejs/kit').Config} */ /** @type {import('@sveltejs/kit').Config} */
const config = { const config = {
preprocess: [optimizeImports()], preprocess: [optimizeImports()],
kit: {
target: "#svelte",
},
}; };
export default config; export default config;