[Vuejs]-Vue – After build pages don't load

0πŸ‘

βœ…

The problem was happening because, as I expected, the application was in a infinite loop.

The application firstly was using dynamic routes created using vite-plugin-pages

This was generating some problems during build, then I manually wrote the routes. Unfortunally I did forget to add the basic permissions to vue @casl

meta: {action:'read', subject:'Auth'},

0πŸ‘

You can’t serve your vue build with live Server

This question is already Answered here How to run production site after build vue cli

Leave a comment