diff --git a/examples/polymer-cli/.storybook/webpack.config.js b/examples/polymer-cli/.storybook/webpack.config.js index 578118071fea..3e7ae19f52be 100644 --- a/examples/polymer-cli/.storybook/webpack.config.js +++ b/examples/polymer-cli/.storybook/webpack.config.js @@ -8,6 +8,6 @@ module.exports = async ({ config }) => { include: [path.resolve(__dirname, '../src')], enforce: 'pre', }); - config.module.plugins.push(new webpack.IgnorePlugin(/vertx/)); + config.plugins.push(new webpack.IgnorePlugin(/vertx/)); return config; };