-
In my workflow compressed assets are not needed as external service handles that for us. I can't see an option to disable compression completely. Is it possible? I hope to save a bit of time by skipping compression 🤔 |
Beta Was this translation helpful? Give feedback.
Answered by
ElMassimo
Sep 27, 2022
Replies: 1 comment
-
Hi @Bartuz, You can disable this report by using defineConfig({
build: {
reportCompressedSize: false,
},
}) Reporting is fast enough that in most cases it's not worth disabling, but if you have large files then it makes sense. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
ElMassimo
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @Bartuz,
gzip
files are not generated, the logs simply display the file size if compression was applied.You can disable this report by using
reportCompressedSize
:Reporting is fast enough that in most cases it's not worth disabling, but if you have large files then it makes sense.