Luc Leray
Luc Leray
Reduce size by around ~30kB : https://packagephobia.now.sh/result?p=busboy (By the way, thanks for this amazing package 🙂)
I just found out his PR : https://github.com/mscdex/dicer/pull/18 Same logic here 🙂
I'm willing to take a PR for this 👍
@lukasz-strzelczyk I don't have Windows so I can't experiment with it, but there is a solution for that on MacOS. If someone could help me with Windows, I can try...
The brown effect is not expected, maybe you have Night Shift or f.lux turned on ? For MacOS, you can use an `rgba` background color, for example `rgba(0,0,0,0.5)` is black...
You should be able to use it like this : ```js // next.config.js const withPlugins = require('next-compose-plugins'); const purgecss = require('next-purgecss'); const sass = require('@zeit/next-sass'); const nextConfig = { //...
Can you share a reproduction? The order of the plugins might be the issue.
Thanks! I'm not really familiar with next-compose-plugins, but could you try to put purgecss first in the list ? Like this: ``` module.exports = withPlugins( [purgecss, css, [sass, sassConfig]], nextConfig,...
@nagman Awesome! I have published a new version of the package (`3.0.1`), can you try it and tell me if it works?
Oh, that's unexpected. It may be the underlying packages : https://github.com/FullHuman/purgecss https://github.com/FullHuman/purgecss-webpack-plugin I don't really have control over those. I found an open issue that seems to be related to...