gajus/write-file-webpack-plugin

Plugin is not working with new new web dev server

Open

#73 geöffnet am 5. Feb. 2019

Auf GitHub ansehen
 (7 Kommentare) (2 Reaktionen) (0 zugewiesene Personen)JavaScript (53 Forks)github user discovery
enhancementhelp wanted

Repository-Metriken

Stars
 (522 Stars)
PR-Merge-Metriken
 (PR-Metriken ausstehend)

Beschreibung

Due to this commit add output.futureEmitAssets your plugin is not working anymore on new web dev server. Do you have a workaround?

Edit: I found the work around:

module.exports = {
    output: {
         ......  
        futureEmitAssets: false   // https://github.com/webpack/webpack/pull/8642/files due this change in webpack, writeFilePlugin is not working, we have to disable that option. This will not work on webpack 5
    },

Contributor Guide