From dcd29f01340b78671c6d911e425e5072ce2032f1 Mon Sep 17 00:00:00 2001 From: Derek Nance Date: Mon, 15 Dec 2025 14:46:00 -0600 Subject: [PATCH] build:bit:main works --- bitwarden_license/bit-desktop/webpack.config.js | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/bitwarden_license/bit-desktop/webpack.config.js b/bitwarden_license/bit-desktop/webpack.config.js index 4e4909bfce7..14820a147d6 100644 --- a/bitwarden_license/bit-desktop/webpack.config.js +++ b/bitwarden_license/bit-desktop/webpack.config.js @@ -8,6 +8,11 @@ module.exports = (webpackConfig, context) => { if (isNxBuild) { return buildConfig({ configName: "Commercial", + renderer: { + entry: "", + entryModule: "", + tsConfig: "", + }, main: { entry: path.resolve(__dirname, "src/entry.ts"), tsConfig: path.resolve(context.context.root, "bitwarden_license/bit-desktop/tsconfig.json"), @@ -17,10 +22,19 @@ module.exports = (webpackConfig, context) => { } else { return buildConfig({ configName: "Commercial", + renderer: { + entry: "", + entryModule: "", + tsConfig: "", + }, main: { entry: path.resolve(__dirname, "src/entry.ts"), tsConfig: path.resolve(__dirname, "tsconfig.json"), }, + preload: { + entry: "", + tsConfig: "", + }, }); } };