Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions src/content/concepts/configuration.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -60,3 +60,15 @@ _See_: [Exporting multiple configurations](/configuration/configuration-types/#e
Webpack accepts configuration files written in multiple programming and data languages.

_See_: [Configuration Languages](/configuration/configuration-languages/)

## Understanding Webpack Error Output

When webpack encounters a configuration or build error, it prints structured information in the terminal to help diagnose the problem

This output may include:

- A stack trace showing where the error originated
- Additional details providing more context
- A cause when one error is triggered by another

Understanding these parts can help identify configuration or source code issues more quickly
Loading