Hi I just solved the usual issue happening with a Vue.js App (my case was a Quasar framework APP).
Basically you have to:
- Go/create public folder
- Add _redirects File
- In there add: /* / 200
Basically what’s happening is saying: Anything under ‘/’ => go to ‘/’
So this is pointing to the root of the app.
Hope it helps!