Next/13/Remove Next Export
The next export command is deprecated. This codemod dangerously removes all references to the command in *.md, *.sh, package.json. It also adds a property output with the value export to the module.exports object in next.config.js files.
Example
Before (Shell files):
npm run next buildnpm run next export
After (Shell files):
npm run next build
Before (next.config.js files):
module.exports = {distDir: "out",};
After (next.config.js files):
module.exports = {distDir: "out",output: "export",};
Build custom codemods
Use AI-powered codemod studio and automate undifferentiated tasks for yourself, colleagues or the community