microsoft/azure-devops-extension-hot-reload-and-debug

CopyWebpackPlugin error after package version updates

GaTechThomas opened this issue · 0 comments

After updating package versions, the CopyWebpackPlugin fails.

Updating from the suggested:

plugins: [new CopyWebpackPlugin([{ from: "**/*.html", context: "src" }])]

To:

plugins: [new CopyWebpackPlugin({ patterns: [{ from: "**/*.html", context: "src" }] })]

seems to have fixed the problem.