SSR app configuration
-
Salamu alaykum,
first thanks for the effort put in a really great framework
I’m currently building a SSR + PWA app, and I was wondering:- how to tell Quarsar what my dynamic routes are so it can ssr them?
for eg:
{ path: "/blogs", component: () => import("pages/blogs.vue"), children: [{ path: "/:blog", component: () => import("pages/blog.vue") }] }
- How do I prefix a route, so if I’m in blogs/:blog for example and I want to change the language
ie: /ar/blogs/blog
do you provide a certain way to prefix the route or do I do it manually?
thanks.
- how to tell Quarsar what my dynamic routes are so it can ssr them?