I have a simple landing page and I used webpack. If I run webpack with -p
flag which stands for -optimize-minimize
it will break css gradients in Firefox. Instead of smooth color change I see harsh stripes.
Under the hood css-loader using cssnano module.
Any idea what causing this issue?
Thanks,
{
test: /.scss$/i,
loaders: ['style', 'css?sourceMap&safe', 'postcss-loader', 'sass?sourceMap'],
}