diff --git a/webpack.config.js b/webpack.config.js index eaa7d9c9b..168fc1b9b 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -1,7 +1,6 @@ import path from 'path'; import webpack from 'webpack'; import pkg from './package.json'; -import TerserPlugin from 'terser-webpack-plugin'; const rootDir = path.resolve(__dirname); @@ -12,18 +11,6 @@ export default ({ config }) => ({ filename: 'grapes.min.js', libraryExport: 'default', }, - optimization: { - minimizer: [new TerserPlugin({ - extractComments: false, - terserOptions: { - output: { - comments: false, - quote_style: 3, // Preserve original quotes - preamble: `/*! grapesjs - ${pkg.version} */`, - } - } - })], - }, devServer: { ...config.devServer, static: [rootDir],