[SOLVED] Vue / Quasar Framework App router in History mode fix hash issue

Hi I just solved the usual issue happening with a Vue.js App (my case was a Quasar framework APP).
Basically you have to:

  1. Go/create public folder
  2. Add _redirects File
  3. 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!

1 Like

Hey there, @Despertaweb

Thanks for sharing! This will definitely be helpful to future Forums members who find themselves in a similar situation. We appreciate it :netliconfetti:

1 Like