diff --git a/apps/ligo-virgo/webpack.config.js b/apps/ligo-virgo/webpack.config.js index 9838e4dfb9..2082de5348 100644 --- a/apps/ligo-virgo/webpack.config.js +++ b/apps/ligo-virgo/webpack.config.js @@ -91,9 +91,9 @@ module.exports = function (webpackConfig) { priority: -9, chunks: 'all', }, - vender: { + vendor: { test: /([\\/]node_modules[\\/]|polyfills|@nrwl)/, - name: 'vender', + name: 'vendor', priority: -10, chunks: 'all', }, diff --git a/apps/venus/webpack.config.js b/apps/venus/webpack.config.js index c325851149..88df817a12 100644 --- a/apps/venus/webpack.config.js +++ b/apps/venus/webpack.config.js @@ -81,9 +81,9 @@ module.exports = function (webpackConfig) { priority: -9, chunks: 'all', }, - vender: { + vendor: { test: /([\\/]node_modules[\\/]|polyfills|@nrwl)/, - name: 'vender', + name: 'vendor', priority: -10, chunks: 'all', },