mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-10 04:22:27 +10:00
9 lines
259 B
JavaScript
9 lines
259 B
JavaScript
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;
|
|
});
|