From e4223a3aee5ae7d1bce7b22941c54345e444fccf Mon Sep 17 00:00:00 2001 From: Javier Segarra Date: Wed, 5 Feb 2025 22:39:22 +0100 Subject: [PATCH] fix: remove void fn --- quasar.config.js | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/quasar.config.js b/quasar.config.js index d3d8947d..83b78c51 100644 --- a/quasar.config.js +++ b/quasar.config.js @@ -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) {} } }; });