nad182

Results 5 comments of nad182

It's not going to work if you're trying to change a property with a variable that hasn't been defined in your `antdCustom.scss` file. For example, if you didn't define `@highlight-color`...

Facing the same issue: ```ts Property 'restart' does not exist on type 'FormApi'.ts(2339) ``` I'm also using [email protected] UPD: submitted a PR [here](https://github.com/final-form/final-form/pull/374) to fix this.

For some reason neither resizing, nor converting to webp works for me, as also mentioned in [this issue](https://github.com/cyrilwanner/next-optimized-images/issues/147). How did you guys make it work (even without combining)?

> Have you tried `?resize&format=webp`? Yes. My css file: ```css background-image: url('../public/images/hero-bg.png?resize&format=webp'); ``` My next.config.js: ```js module.exports = withPlugins([ [ optimizedImages, { optimizeImagesInDev: true, responsive: { adapter: responsiveLoaderSharp, sizes: [300,...

I also can neither resize background-image in `filename.module.scss`, nor convert it to webp. Any of ```css background-image: url('../public/images/hero-bg.png?webp'); background-image: url('../public/images/hero-bg.png?resize&size=500'); ``` results in the full jpeg image (i.e. _localhost:3000/\_next/static/images/hero-bg-3ffba3cef92d0972f13f317d74e1bcab.png_). This...