-
Hi everyone, as the title states, I'd like to disable ANSI escape sequences in Vite output. I'm using Vite programmatically and in my CI environment the escape sequences are wreaking havoc. I can filter them out externally, but before I go down that route I was wondering if maybe there is a way to do it straight at the source..? Thanks! :-) |
Beta Was this translation helpful? Give feedback.
Answered by
hi-ogawa
Jan 5, 2025
Replies: 1 comment 2 replies
-
Adding |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
jahudka
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Adding
NO_COLOR=true vite
should disable color output and ANSI escape. This is the convention used by color format libraries.