·
2 commits
to main
since this release
Patch Changes
-
#1612
941a075
Thanks @SutuSebastian! - Fixnextjs
plugin to work on all environmentsChanges
- fix(ui):
nextjs
plugin to run properly onNODE_ENV
environments:production
,development
andtest
- log file writes in
dev
Breaking changes
withFlowbiteReact
now always returns async configuration (see: Async Configuration) so make sure to wrap any other HOC (higher-order-functions) such aswithContentlayer
because most of them do not forward pass async config arguments (eg:phase, options
)// ❌ not working export default withContentlayer(withFlowbiteReact(nextConfig)); // ✅ working export default withFlowbiteReact(withContentlayer(nextConfig));
- fix(ui):