mirror of
https://github.com/bitwarden/browser
synced 2025-12-11 22:03:36 +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.
8 lines
163 B
JavaScript
8 lines
163 B
JavaScript
const { buildConfig } = require("./webpack.base");
|
|
|
|
module.exports = buildConfig({
|
|
configName: "OSS",
|
|
entry: "./src/bw.ts",
|
|
tsConfig: "./tsconfig.json",
|
|
});
|