Ability to style Next.js Node logs?
Answered
Nile Crocodile posted this in #help-forum
Nile CrocodileOP
Hello, just wondering if anyone knows of a way to style/override Next's default terminal logs. For things like
✓ Compiled in 1588ms
And the initial startup:
▲ Next.js 15.2.2 (Turbopack)
- Local: http://localhost
- Network: http://
- Environments: .env.local, .env
- Experiments (use with caution):
· turbo
✓ authInterrupts
· clientTraceMetadata
✓ Starting...
✓ Compiled in 939ms
✓ Ready in 1683ms
✓ Compiled in 1588ms
And the initial startup:
▲ Next.js 15.2.2 (Turbopack)
- Local: http://localhost
- Network: http://
- Environments: .env.local, .env
- Experiments (use with caution):
· turbo
✓ authInterrupts
· clientTraceMetadata
✓ Starting...
✓ Compiled in 939ms
✓ Ready in 1683ms
Answered by joulev
the only way to override it is to [patch](https://www.npmjs.com/package/patch-package) the
next
package6 Replies
@Nile Crocodile Hello, just wondering if anyone knows of a way to style/override Next's default terminal logs. For things like
✓ Compiled in 1588ms
And the initial startup:
▲ Next.js 15.2.2 (Turbopack)
- Local: http://localhost
- Network: http://
- Environments: .env.local, .env
- Experiments (use with caution):
· turbo
✓ authInterrupts
· clientTraceMetadata
✓ Starting...
✓ Compiled in 939ms
✓ Ready in 1683ms
the only way to override it is to [patch](https://www.npmjs.com/package/patch-package) the
next
packageAnswer
@joulev the only way to override it is to [patch](<https://www.npmjs.com/package/patch-package>) the `next` package
Nile CrocodileOP
Cool, thanks for the tip.
Nile CrocodileOP
Woooo, it worked. 😄
This'll be fun.
yeah it is haha