Details for the Codecov Astro plugin.

// astro.config.mjs
import { defineConfig } from "astro/config";
import { codecovAstroPlugin } from "@codecov/astro-plugin";

// https://astro.build/config
export default defineConfig({
// other config settings
integrations: [
// place this after all other integrations
codecovAstroPlugin({
enableBundleAnalysis: true,
bundleName: "example-astro-bundle",
gitService: "github",
}),
],
});

Options for list of options.