Details for the Codecov SvelteKit plugin.

// vite.config.ts
import { sveltekit } from "@sveltejs/kit/vite";
import { defineConfig } from "vite";
import { codecovSvelteKitPlugin } from "@codecov/sveltekit-plugin";

export default defineConfig({
plugins: [
sveltekit(),
// Put the Codecov SvelteKit plugin after all other plugins
codecovSvelteKitPlugin({
enableBundleAnalysis: true,
bundleName: "example-sveltekit-bundle",
gitService: "github",
}),
],
});

Options for list of options.