|
|
@@ -49,7 +49,7 @@ singlefile.config = (() => {
|
|
|
autoSaveLoadOrUnload: true,
|
|
|
removeAlternativeFonts: true,
|
|
|
removeAlternativeMedias: true,
|
|
|
- removeSrcSet: false
|
|
|
+ removeSrcSet: true
|
|
|
};
|
|
|
|
|
|
let pendingUpgradePromise;
|
|
|
@@ -137,6 +137,9 @@ singlefile.config = (() => {
|
|
|
if (config.removeAlternativeMedias === undefined) {
|
|
|
config.removeAlternativeMedias = true;
|
|
|
}
|
|
|
+ if (config.removeSrcSet === undefined) {
|
|
|
+ config.removeSrcSet = true;
|
|
|
+ }
|
|
|
if (config.autoSaveLoadOrUnload === undefined && !config.autoSaveUnload) {
|
|
|
config.autoSaveLoadOrUnload = true;
|
|
|
config.autoSaveLoad = false;
|