ACTIVEPIECES/packages/server/api/webpack.config.js
rohit cd823a2d9e
Some checks failed
Crowdin Action / synchronize-with-crowdin (push) Has been cancelled
Release Pieces / Release-Pieces (push) Has been cancelled
automaton layer
2025-07-05 23:59:03 +05:30

8 lines
260 B
JavaScript

const { composePlugins, withNx } = require('@nx/webpack');
const IgnoreDynamicRequire = require('webpack-ignore-dynamic-require');
module.exports = composePlugins(withNx(), (config) => {
config.plugins.push(new IgnoreDynamicRequire());
return config;
});