I'm using the latest runtime and the following config (sans other siteConfigs):
const config = {
spacepackEverywhere: {
enabled: false, // Automatically detect webpack objects and inject them with spacepack (Default: true)
ignoreSites: ["discord.com"], // Don't inject spacepack on matching sites (Default: [])
// Don't inject spacepack on matching webpack objects (Default: [])
ignoreChunkObjects: [
"webpackChunkruffle_extension", // https://ruffle.rs/
],
},
siteConfigs: [
{
name: "Duolingo",
chunkObject: "webpackChunk",
webpackVersion: "5", // guess
matchSites: ["www.duolingo.com"],
patchAll: true,
},
],
};
I'm using the latest runtime and the following config (sans other
siteConfigs):