Skip to content

Implements CI friendly bundle size logging for your production builds

Notifications You must be signed in to change notification settings

igloonet/gatsby-plugin-webpack-size

 
 

Repository files navigation

Gatsby Plugin Webpack Size

NPM   NPM downloads

Implements CI friendly bundle size logging for your production builds.

Screenshot

☁️ Installation

npm i gatsby-plugin-webpack-size

🛫 Setup

Add 'gatsby-plugin-webpack-size' to the plugins in your gatsby-config.js file.

module.exports = {
  plugins: [
    `gatsby-plugin-webpack-size`
  ]
}

⚙️ Configuration

The only custom option implemented is development. All other options are passed to the size-plugin.

module.exports = {
  plugins: [
    [
      `gatsby-plugin-webpack-size`,
      {
        // Set to true to show bundle sizes in development mode as well
        development: true
      }
    ]
  ]
}

About

Implements CI friendly bundle size logging for your production builds

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%