William L'Archeveque
William L'Archeveque
Any estimate release date for this version ?
We are looking to archive the same goal for our full static project when generating dynamic routes. We want to avoid regenerating the whole website for specific changes / addition...
> This could be done with some code in your config. With Nuxt full static the site won't be rebuilt, and you can turn off the crawler and just specify...
@hesselberg This is exactly what we have though. We maintain a CMS that allow the creation and modification of content. Any action on the content would trigger a webhook for...
I have implemented @emiliobondioli solution to modify the routes array using the `generate:extendRoutes` hook this way in `nux.config` : ``` hooks: { generate: { extendRoutes(routes) { const routesArg = process.argv.indexOf('-r')...
EDIT : (removed my previous question as it was irrelevant, I made a mistake in my payload)
It seems I found a problem regarding the process explained in this thread. The timestamp generated on an incremental build causes a problem when directly loading a page that was...
@isvaljek You can write a buildModule to overwrite Nuxt options during static site generation. Here is an example, code is in `./modules/generate.js` and added module is added to the `buildModules`...
@huytrvan 1) The `-r` parameter is a suggested change in the original message. It is not recognized/implemented by either nuxt, nor npm. Although, as mentioned throughout the previous discussion, it...
We have encountered the same issue while upgrading to MySQL 8 and using `mysql2` driver with `knex`. We make use of `@wwwouter/typed-knex` to add a typing layer to our knex...