Keisuke Ikeda
Keisuke Ikeda
@pookmish I'm not sure if this is a bug, but do you need to revalidate the URL alias when creating new content? Before the content is created, accessing the URL...
You're right, I was able to confirm that the 404 page is cached in the Pages Router Starter. In the App Router Starter, however, it doesn’t seem to be cached,...
@rpayanm Has On-demand Revalidation been implemented? It's required to ensure content updates are reflected on the site. For more details, see the documentation: https://next-drupal.org/learn/on-demand-revalidation
@pookmish I've confirmed that it works as expected. Looks great!
@skyeinthecloud In version 2.0, Draft Mode has replaced Preview Mode. For more details, check out the following link: https://github.com/chapter-three/next-drupal/issues/502 You can find the documentation here: https://next-drupal.org/learn/draft-mode
@Vacilando This module is configured with a limit of 1,000. While this limit can likely be changed with a patch, it may impact performance. https://github.com/chapter-three/next-drupal/blob/v2.0/modules/next/modules/next_jsonapi/next_jsonapi.services.yml#L2
@Vacilando Isn't it possible to handle pagination using offset and limit? ```javascript const paths = await drupal.getStaticPathsFromContext(RESOURCE_TYPES, context, { params: { "page[offset]": 1000, "page[limit]": 1000, } }); ```
@Vacilando Pagination is documented in the JSON:API documentation. https://www.drupal.org/docs/core-modules-and-themes/core-modules/jsonapi-module/pagination I tested using offset in `getStaticPathsFromContext` function, and it worked as expected.