rsnext/errors/minification-disabled.mdx
Delba de Oliveira 44d1a1cb15
docs: Migrate error messages to MDX and App Router. (#52038)
This PR is part of a larger effort to migrate error messages to MDX and
use App Router: https://github.com/vercel/front/pull/23459
2023-07-05 06:11:16 -07:00

16 lines
646 B
Text

---
title: Minification Disabled in Production
---
## Why This Error Occurred
Code optimization has been disabled for your **production build**.
The `optimization.minimize` or `optimization.minimizer` was incorrectly overridden in `next.config.js`.
This severely degrades your application's performance at runtime. It can also result in server-side-only code being downloaded by your users.
## Possible Ways to Fix It
Be sure your `next.config.js` has not modified `optimization.minimize` or `optimization.minimizer`.
You can file an issue on our GitHub if you do not understand why minification is being disabled by your `next.config.js`.