dwin0

Results 6 comments of dwin0

I agree with @kakka0903. I would like to prerender static pages from a CMS. The idea would be to pass the CMS data as payload to the page (like in...

I think there's a misunderstanding. We are not talking about query parameters. The feature we are referring to is this one: https://nuxtjs.org/docs/configuration-glossary/configuration-generate/#speeding-up-dynamic-route-generation-with-payload nuxt.config.js: ```js export default { generate: { routes()...

@Diizzayy Thanks for putting in the effort to make it compatible with Nuxt 3! @kieusonlam, when will this change be merged into v5 and when do you plan to make...

I agree with @kakka0903. I would like to prerender static pages from a CMS. The idea would be to pass the CMS data as payload to the page (like in...

I think there's a misunderstanding. We are not talking about query parameters. The feature we are referring to is this one: https://nuxtjs.org/docs/configuration-glossary/configuration-generate/#speeding-up-dynamic-route-generation-with-payload nuxt.config.js: ```js export default { generate: { routes()...

This will probably not cover all the cases, but by copying together code, this seems to work: helper functions: ```ts const scheduler = typeof setImmediate === 'function' ? setImmediate :...