Skip to content

When running with watch, assets fail to regenerate on save #153

@JerrettDavis

Description

@JerrettDavis

If you are running any of the webpack scripts with watch enabled, the clean process wipes out assets, but does not replace the deleted files. If you add an image to the images folder, the new asset is picked up and placed in the assets folder, but the rest of the images are not transferred.

The only fix I've found so far is to disable the cleanStateWebpackAssets option, but this isn't optimal.

        new CleanWebpackPlugin({
            cleanOnceBeforeBuildPatterns: ['./wwwroot/dist', './wwwroot/assets'],
            cleanStaleWebpackAssets: false, // It's been removing all images, we want to leave those in place.
            root: ROOT
        }),

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions