mirror of
https://github.com/bitwarden/browser
synced 2025-12-10 13:23:34 +00:00
* feat: create separate bit licensed browser * feat: refactor webpack config * fix: mv2 build not working * feat: add bit versions of all commands * feat: add bit CI builds * fix: scss missing from build
14 lines
466 B
JavaScript
14 lines
466 B
JavaScript
const { buildConfig } = require("../../apps/browser/webpack.base");
|
|
|
|
module.exports = buildConfig({
|
|
configName: "Commercial",
|
|
popup: {
|
|
entry: "../../bitwarden_license/bit-browser/src/popup/main.ts",
|
|
entryModule: "../../bitwarden_license/bit-browser/src/popup/app.module#AppModule",
|
|
},
|
|
background: {
|
|
entry: "../../bitwarden_license/bit-browser/src/platform/background.ts",
|
|
},
|
|
tsConfig: "../../bitwarden_license/bit-browser/tsconfig.json",
|
|
});
|