Skip to content

v6.1.0

Compare
Choose a tag to compare
@patricklafrance patricklafrance released this 27 Jan 22:21
  • New utility methods available : getPlugin, pluginByName, addPlugins and removePlugins.
  • Webpack config override now allow the removal of webpack plugins.

The old syntax to modify webpack plugins (an array) is still supported for backward compatibility but we encourage you to switch to the new syntax:

webpack: {
    plugins: {
        add: [], 
        remove: [],
    }
}