mirror of https://github.com/bitwarden/web.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
428 B
12 lines
428 B
const { AngularWebpackPlugin } = require("@ngtools/webpack"); |
|
|
|
const webpackConfig = require("../webpack.config"); |
|
|
|
webpackConfig.entry["app/main"] = "./bitwarden_license/src/app/main.ts"; |
|
webpackConfig.plugins[webpackConfig.plugins.length - 1] = new AngularWebpackPlugin({ |
|
tsConfigPath: "tsconfig.json", |
|
entryModule: "bitwarden_license/src/app/app.module#AppModule", |
|
sourceMap: true, |
|
}); |
|
|
|
module.exports = webpackConfig;
|
|
|