mirror of
https://github.com/bitwarden/browser
synced 2025-12-06 00:13:28 +00:00
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.
11 lines
348 B
JavaScript
11 lines
348 B
JavaScript
const { buildConfig } = require("../../apps/web/webpack.base");
|
|
|
|
module.exports = buildConfig({
|
|
configName: "Commercial",
|
|
app: {
|
|
entry: "../../bitwarden_license/bit-web/src/main.ts",
|
|
entryModule: "../../bitwarden_license/bit-web/src/app/app.module#AppModule",
|
|
},
|
|
tsConfig: "../../bitwarden_license/bit-web/tsconfig.build.json",
|
|
});
|