Details for the Codecov Vite plugin.
// vite.config.jsimport { defineConfig } from "vite";import { codecovVitePlugin } from "@codecov/vite-plugin";export default defineConfig({ plugins: [ // Put the Codecov vite plugin after all other plugins codecovVitePlugin({ enableBundleAnalysis: true, bundleName: "example-vite-bundle", gitService: "github", }), ],}); Copy
// vite.config.jsimport { defineConfig } from "vite";import { codecovVitePlugin } from "@codecov/vite-plugin";export default defineConfig({ plugins: [ // Put the Codecov vite plugin after all other plugins codecovVitePlugin({ enableBundleAnalysis: true, bundleName: "example-vite-bundle", gitService: "github", }), ],});
Options for list of options.
Details for the Codecov Vite plugin.
Example
See
Options for list of options.