Vue-router Doesn't Remove Hashbang After Building For Production
I was trying to remove the hashbang and I did it by adding mode:'history' in the index file of vue-router: export default new Router({ mode: 'history', routes: [ { pa
Solution 1:
As the answer has been solved within the comments and as VonC suggested to add an answer so that it could be helpful for others , here it is:
Sinceyou are using nginx to run the files
Setup the server configuration for nginx as shown in example in the docs
location / {
try_files $uri $uri/ /index.html;
}
Post a Comment for "Vue-router Doesn't Remove Hashbang After Building For Production"