How To Disable SSR for Backend Pages. Only SSR wants for Frontend. How To Do This In Laravel Ineria Vuejs Digital Marketplace Project.
When providing pages to the SSR tell to use only frontend pages. Divide pages into different folders like frontend
and backend
.
For example:
`const pages = import.meta.glob('./Pages/Frontend/**/*.vue', { eager: true })
I think it should work.