gregg-cbs
gregg-cbs
I have fixed this by disabling `extractCSS`. I also noticed a performance boost in lighthouse. ```javascript // nuxt.config.js build: { extractCSS: false, // true causes duplicate css splitChunks: { layouts:...
Sure I can do that. Do you mind if I use the [debounce](https://www.npmjs.com/package/debounce) package?
Great will find some time in the next day or so and comment the PR here.
Looks like window resize uses the computeSizes method ``` componentDidMount() { window.addEventListener('resize', this.computeSizes) } computeSizes = () => { const mediaRef = this.imageRef || this.videoRef ... } ``` If i...
@FourPig prefix your key with a property that is specific to that list? ```
I am still facing this issue. Any answers on this?
I found bit 3 years ago and vue support was being promised back then :/ If no vue support what else do we have that is similar to bit.dev
I found webpacks Module Federation. That suits my projects better than bit. This video does a great job at explaining Module Federation: https://www.youtube.com/watch?v=lKKsjpH09dU
I ended up using [react-beautiful-dnd](https://github.com/atlassian/react-beautiful-dnd) which allowed me to achieve the desired effect.
I am having the same issue, with mode set to 2. In the mean time im fixing it with a ternary in my onCrop: ``` setCrop(object) { // theres a...