webpack-dev-middleware icon indicating copy to clipboard operation
webpack-dev-middleware copied to clipboard

A development middleware for webpack

Results 35 webpack-dev-middleware issues
Sort by recently updated
recently updated
newest added

- Operating System: ubuntu - Node Version: latest - NPM Version: latest - webpack Version: latest - webpack-dev-middleware Version: latest ### Feature Proposal enable use of other backends. [similar to...

### Modification Proposal We have the following webpack config: ```js module.exports = ["foo", "bar"].map((theme) => { return { entry: "./src/index.js", output: { path: path.resolve(`dist/${theme}`), }, resolve: { alias: { "~current-theme":...

### Bug report ``` node:events:368 throw er; // Unhandled 'error' event ^ Error: EPIPE: broken pipe, write at Socket._write (node:internal/net:55:25) at writeOrBuffer (node:internal/streams/writable:389:12) at _write (node:internal/streams/writable:330:10) at Socket.Writable.write (node:internal/streams/writable:334:10) at...

### Bug report ` const path = require('path'); const myOutputFileSystem = require('my-fs'); const mkdirp = require('mkdirp'); const webpackConfig = require('../../webpack.client.dev.js'); myOutputFileSystem.join = path.join.bind(path); // no need to bind myOutputFileSystem.mkdirp =...

# Bug report **What is the current behavior?** `output.clean: true` is not working with webpack dev server, when building for the first time, or when project is rebuilding due to...

### Modification Proposal Currently, `stats.toString()` is printed on the `compiler.hooks.afterDone` hook, inside a `process.nextTick()` call. I want to print something after that stats have all printed. The `nextTick` means that...

This should help with keeping the GitHub actions updated on new releases. This will also help with keeping it secure. Dependabot helps in keeping the supply chain secure https://docs.github.com/en/code-security/dependabot GitHub...

### Feature Proposal Currently, `webpack-dev-middleware` only supports single-range requests, and will return the entire requested resource if multiple ranges are specified (https://github.com/webpack/webpack-dev-middleware/blob/master/src/middleware.js#L215-L218). I didn't see any documentation around this, or...

### Feature Proposal Configuration option to set default mime-type ```js // webpack.dev.js module.exports = { devServer: { devMiddleWare: { // provide default when mime-type evals to false. mimeTypeDefault: 'text/html' }...

**Do you want to request a *feature* or report a *bug*?** report a *bug* **What is the current behavior?** When using DllReferencePlugin with webpack-dev-server or webpack-dev-middleware, it will occurs an...