fix: remove void fn

This commit is contained in:
Javier Segarra 2025-02-05 22:39:22 +01:00
parent 38dd1d6303
commit e4223a3aee
1 changed files with 1 additions and 7 deletions

View File

@ -139,8 +139,6 @@ module.exports = configure(function (ctx) {
maxAge: 1000 * 60 * 60 * 24 * 30,
// Tell browser when a file from the server should expire from cache (in ms)
chainWebpackWebserver(chain) {},
middlewares: [
ctx.prod ? 'compression' : '',
'render' // keep this as last one
@ -224,13 +222,9 @@ module.exports = configure(function (ctx) {
// https://www.electron.build/configuration/configuration
appId: 'hedera-web'
},
}
// "chain" is a webpack-chain object https://github.com/neutrinojs/webpack-chain
chainWebpackMain(chain) {},
chainWebpackPreload(chain) {}
}
};
});