I'm opening this issue to collect some information I find.
Error
Appears in the background worker on load:
Repro
I think the repro so far is:
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
module.exports = {
plugins: [
// This is the order in my config
new WebExtensionTarget({
weakRuntimeCheck: true,
background: {
// it works with `pageEntry` on MV2
serviceWorkerEntry: "background",
}
}),
new MiniCssExtractPlugin(),
],
module: {
rules: [
{
test: /\.css$/i,
use: [MiniCssExtractPlugin.loader, "css-loader"],
},
],
},
};
I'm opening this issue to collect some information I find.
Error
Appears in the background worker on load:
Repro
I think the repro so far is:
Related
First seen in