ps-assessment/part-2-javascript/webpack.config.js
2023-10-11 16:46:46 +02:00

9 lines
260 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;
});