Change import from webpack-manifest-plugin torspack-manifest-plugin.
Before
//change the import from webpack-manifest-plugin to rspack-manifest-pluginconst { WebpackManifestPlugin } = require('webpack-manifest-plugin');module.exports = {plugins: [new WebpackManifestPlugin(options)],};
After
const { RspackManifestPlugin } = require('rspack-manifest-plugin');module.exports = {plugins: [new RspackManifestPlugin(options)],};
Build custom codemods
Use AI-powered codemod studio and automate undifferentiated tasks for yourself, colleagues or the community