camden_kid
camden_kid

Reputation: 12813

How to change the colour of webpack compilation output?

The text colour in the Run window during a webpack complition appears mainly in red. How can this be changed so that it is white (or another colour) and only red when there are errors?

enter image description here

Upvotes: 1

Views: 349

Answers (1)

lena
lena

Reputation: 93848

you can't. Webpack writes compilation progress to stderr stream. And it's highlighted according to Error output preferences (Preferences | Editor | Color Scheme | Console Colors, Console/Error output, default is red) in WebStorm. ANSI colors are not interpreted there (IDEA-137769)

Upvotes: 3

Related Questions