1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-10 05:13:29 +00:00
Files
browser/bitwarden_license/bit-cli/webpack.config.js
Derek Nance 9aed9aa08e [PM-25910] Refactor webpack config (#16616)
This commit restructures the webpack configs for each project (i.e. web, browser, desktop, cli) such that each project has a base config that is shared in a way that requires less hard-coding of info, and more like simply calling a function with a few properties.
2025-10-06 15:31:06 -05:00

8 lines
243 B
JavaScript

const { buildConfig } = require("../../apps/cli/webpack.base");
module.exports = buildConfig({
configName: "Commercial",
entry: "../../bitwarden_license/bit-cli/src/bw.ts",
tsConfig: "../../bitwarden_license/bit-cli/tsconfig.json",
});