Juho Vepsäläinen
                                            Juho Vepsäläinen
                                        
                                    @jarroput Yup, that plugin is my [official recommendation](https://survivejs.com/webpack/optimizing/minifying/#setting-up-css-minification). I would say fixing this issue is worth it given this particular plugin is getting five million downloads per week at the...
@nikbelikov It's probably better to migrate to https://www.npmjs.com/package/css-minimizer-webpack-plugin or fork this one with the webpack 5 fix as the author seems busy.
@UziTech I tried out your promising work and found a potential issue. It seems it breaks link (`![]()`) handling. I have steps to reproduce below: 1. Check out https://github.com/gustwindjs/gustwind/tree/bug/async-links 2....
@UziTech I managed to solve it. I had the following piece of code as per your example: ```js start(src: string) { return src.indexOf(":"); }, ``` After removing, it fixed the...
@UziTech Is the `start` check actually needed? It is there just for optimization purposes? Maybe it would be nice to have short comments at the doc portion related to this...
Thanks. I'll merge this as I'll rewrite this logic. It will plug into `renderers` somehow.
Hi, It's not the concern of the component. I would look into CSS techniques as there are so many ways to style tables. No one right way.
Yeah, let's leave this open for a while. I'm curious too.
It's probably better to avoid refs as there's no official support for them in the component. You can likely find another way to write the code without. If someone wants...
What do you need to achieve exactly?