Skip to content

Instantly share code, notes, and snippets.

@alejandrocoding
Created June 12, 2020 18:36
Show Gist options
  • Save alejandrocoding/fb15706bd4502b8a767927c313e493c7 to your computer and use it in GitHub Desktop.
Save alejandrocoding/fb15706bd4502b8a767927c313e493c7 to your computer and use it in GitHub Desktop.
Angular json file bundle with custom webpack
{
"$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