docs icon indicating copy to clipboard operation
docs copied to clipboard

[OLD] documentation for webpack

Results 37 docs issues
Sort by recently updated
recently updated
newest added

![image](https://user-images.githubusercontent.com/41877426/58608354-7a9e8500-82a3-11e9-8f52-e5f5a0c035b5.png) This is not true when target is not "web". It gets stuck on "Waiting for update signal from WDS..." UNLESS I add the entry manually. Please this has taken...

https://github.com/webpack/docs/wiki/code-splitting `An entry chunk contains the runtime plus a bunch of modules.` I want to know more about the runtime. what is the runtime mean? `It's possible to configure multiple...

I try to use commonjs2 style in DllPlugin and the browser return an error ``` Uncaught ReferenceError: require is not defined ``` here is my config files - webpack dll...

The `NoErrorsPlugin` was deprecated in [webpack PR#3570](https://github.com/webpack/webpack/pull/3570) and renamed to `NoEmitOnErrorsPlugin` [The docs here](https://github.com/webpack/docs/wiki/list-of-plugins#noerrorsplugin) should probably be updated to reflect that.

Who ever is in charge of the documentation should be kicked out the project If he hopes of making a fortune being called to training sessions, because there is no...

Webpack-server-compiles other sources in node-modules. which bloat app.js here's my webpack config ``` const path = require("path") module.exports = { entry: './app.js', output: { path: path.resolve(__dirname, 'build'), filename: 'app.js' },...

Hi! I have a problem with EnvironmentPlugin. I used webpack - 4.16.2 I try to use the plugin like this: ``` /... new webpack.EnvironmentPlugin(['VT_ENV']) /... ``` and I got the...