Michal Piechowiak

Results 63 comments of Michal Piechowiak

Hi @jeffgo10 Do you by any chance see in build logs that `lmdb` package is being built from source during dependencies installation step? Errors like this often happen in such...

Hi @scottyzen I attempted to reproduce with following `nuxt.config.ts`: ```js // https://nuxt.com/docs/api/configuration/nuxt-config export default defineNuxtConfig({ devtools: { enabled: true }, modules: ["@nuxt/image"], image: { // force ipx, as otherwise it...

> But even with that I still had to update the `netlify.toml `file too, for example: > > ```shell > [images] > remote_images = ["https://secure.woonuxt.com/.*"] > ``` > > Passing...

@scottyzen can you share your nuxt config (part related to images configuration)? I used same one as in https://github.com/nuxt/image/issues/1330#issuecomment-2076705842 with just `provider` commented out to use default Netlify Image CDN...

Is https://github.com/scottyzen/woonuxt/pull/157 where you are doing that exploration? If it is then I noticed that if I use `nuxt generate` (which is what is used now on the site I...

https://github.com/unjs/nitro/blob/346a49508b58b747f164ff7aca062ba74174fcbe/src/presets/netlify-v2.ts#L29-L40 this seems to need to be replicated (with at least some adjustment as directories point to different things) to `netlifyStatic` preset ( https://github.com/unjs/nitro/blob/346a49508b58b747f164ff7aca062ba74174fcbe/src/presets/netlify-v2.ts#L90-L104 ) as this one seems to...

Those size problems mentioned here are better solved in `gatsby` directly. I started https://github.com/gatsbyjs/gatsby/issues/37713 for what improvement could be made there. Some improvements already did happen - the `.cache/page-ssr/routes/static/` problem...

We will likely be doing work on `gatsby` side of things to decrease size of generated engines. The one mentioned by @trevorblades was already handled in gatsby ( https://github.com/gatsbyjs/gatsby/pull/37284 )...

Is it debounced? Maybe `dom-helpers/events/on` debounce it, but I didn't find debounce in `scroll-behavior` code from quick scan - but as I mentioned I don't have much context, and I...

I think this is very good write up of the issue and we should start thinking about "Detailed design". I will now look into plugin implementation to see what extension...