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: "", + }, }); } };