I'm currently exploring the possibility of implementing dynamic routes in a Nuxt SPA. While I am familiar with using dynamic routes in Universal Mode and generating them during build time through functions, I am searching for a solution that does not require rebuilding the project every time there is a new entry added to a database.
My web application allows users to create content via a Strapi backend, which should be immediately accessible through URLs like www.domain.com/content/unique_id without the need for rebuilds. Is it feasible to achieve this? Can I create something similar to /content/index.vue, which can access parameters and retrieve the appropriate content?
Additionally, I would prefer to utilize Universal Mode for various reasons, but due to incorporating Three.js in my project, I have resorted to using SPA. Further details can be found in my post on here