Details for the Codecov SvelteKit plugin.
// vite.config.tsimport { 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", }), ],}); Copy
// vite.config.tsimport { 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.
Details for the Codecov SvelteKit plugin.
Example
See
Options for list of options.