Created
June 12, 2020 18:36
-
-
Save alejandrocoding/fb15706bd4502b8a767927c313e493c7 to your computer and use it in GitHub Desktop.
Angular json file bundle with custom webpack
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "./node_modules/@angular/cli/lib/config/schema.json", | |
... | |
"projects": { | |
"chrome-extension-template": { | |
... | |
"architect": { | |
"build": { | |
"builder": "@angular-builders/custom-webpack:browser", | |
"options": { | |
... | |
"aot": true, | |
"vendorChunk": false, | |
"assets": [ | |
"src/favicon.ico", | |
"src/assets", | |
"src/manifest.json" | |
], | |
... | |
"scripts": [], | |
"customWebpackConfig": { | |
"path": "./custom-webpack.config.js" | |
} | |
} | |
... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment