carbon-components-svelte/examples/sveltekit/svelte.config.js
Ricky de Laveaga 68b9ecf0fc
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
2022-02-17 18:58:32 -08:00

8 lines
186 B
JavaScript

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