Closed mhsattarian closed 4 years ago
activating CopyPlugin would produce this:
CopyPlugin
plugins: [ new CopyPlugin([ { from: 'src/index.html' } ]) ]
instead, It should add this to webpack.config.js:
webpack.config.js
plugins: [ new CopyPlugin({ + patterns: [{ from: "src/index.html" }], }) ],
fixed! thanks for reporting!
activating
CopyPlugin
would produce this:instead, It should add this to
webpack.config.js
: