fix: #10586, fix webinstaller folders

This commit is contained in:
Barış Soner Uşaklı
2022-05-06 12:53:44 -04:00
committed by Julian Lam
parent e93ecc74fb
commit 6e011b8ff5
2 changed files with 16 additions and 10 deletions

View File

@@ -29,7 +29,8 @@ module.exports = {
publicPath: `${relativePath}/assets/`,
clean: {
keep(asset) {
return !asset.endsWith('.min.js');
return asset === 'installer.min.js' ||
!asset.endsWith('.min.js');
},
},
},