We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 674ab95 commit d921986Copy full SHA for d921986
1 file changed
src/packager/packager.js
@@ -275,8 +275,8 @@ class Packager extends EventTarget {
275
} else {
276
texts.push(await this.fetchLargeAsset('scaffolding-min', 'text'));
277
}
278
- if (this.options.optimizeCode) texts[1] = optiCompress(texts[1], this);
279
if (this.options.removeDefaultFonts) texts[1] = removeDefaultFonts(texts[1]);
+ if (this.options.optimizeCode) texts[1] = optiCompress(texts[1], this);
280
if (Object.values(this.getAddonOptions()).some((i) => i)) {
281
texts.push(await this.fetchLargeAsset('addons', 'text'));
282
0 commit comments