module.exports = { entry:"./src/index.js", mode:"production", output: { filename:"main.js", path:path.resolve(__dirname, "dist"), }, plugins: [ // Put the Codecov vite plugin after all other plugins codecovWebpackPlugin({ enableBundleAnalysis:true, bundleName:"example-webpack-bundle", gitService:"github", }), ], };
Details for the Codecov Webpack plugin.
Example
See
Options for list of options.