mirror of
https://github.com/bitwarden/browser
synced 2025-12-06 00:13:28 +00:00
32 lines
1.1 KiB
JavaScript
32 lines
1.1 KiB
JavaScript
const path = require("path");
|
|
const { buildConfig } = require(path.resolve(__dirname, "../../apps/web/webpack.base"));
|
|
|
|
module.exports = (webpackConfig, context) => {
|
|
const isNxBuild = context && context.options;
|
|
if (isNxBuild) {
|
|
return buildConfig({
|
|
configName: "Commercial",
|
|
app: {
|
|
entry: context.options.main
|
|
? path.resolve(context.context.root, context.options.main)
|
|
: path.resolve(__dirname, "src/main.ts"),
|
|
entryModule: "bitwarden_license/bit-web/src/app/app.module#AppModule",
|
|
},
|
|
tsConfig: "bitwarden_license/bit-web/tsconfig.build.json",
|
|
outputPath:
|
|
context.context && context.context.root
|
|
? path.resolve(context.context.root, context.options.outputPath)
|
|
: context.options.outputPath,
|
|
});
|
|
} else {
|
|
return buildConfig({
|
|
configName: "Commercial",
|
|
app: {
|
|
entry: path.resolve(__dirname, "src/main.ts"),
|
|
entryModule: "bitwarden_license/bit-web/src/app/app.module#AppModule",
|
|
},
|
|
tsConfig: path.resolve(__dirname, "tsconfig.build.json"),
|
|
});
|
|
}
|
|
};
|