[Vuejs]-How to host a Vue3 vite base app by a specific path

0👍

The bug was in nginx location

instead

rewrite /auth/(.*) /$1  break;

I have

rewrite /(.*) /$1  break;

and routing is now working

Leave a comment