DEV Community

Don
Don

Posted on

1 2

Customize Angular Webpack config

  1. add customWebpackConfig to angular.json

    {
        "projects": {
            "architect": {
                "build": {
                    "options": {
                      "customWebpackConfig": {
              "path": "./custom-webpack.config.js",
              "replaceDuplicatePlugins": true
            },
                    }
                }
            }
        }
    }
    
  2. add the extra webpack plugin config in the custom-webpack.config.js

    module.exports = {
        module: {
            rules: [
                {
                    test: /\.js$/,
                    loader: 'babel-loader',
                    query: {
                        presets: ['@babel/preset-env'
                        ]
                    }
                }
            ]
        }
    }
    
    

Top comments (0)

Billboard image

Create up to 10 Postgres Databases on Neon's free plan.

If you're starting a new project, Neon has got your databases covered. No credit cards. No trials. No getting in your way.

Try Neon for Free →

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay