Skip to content
Snippets Groups Projects
webpack.config.js 259 B
Newer Older
  • Learn to ignore specific revisions
  • const { composePlugins, withNx } = require("@nx/webpack");
    
    // Nx plugins for webpack.
    module.exports = composePlugins(withNx(), (config) => {
      // Update the webpack config as needed here.
      // e.g. `config.plugins.push(new MyPlugin())`
      return config;
    });