0👍
In your nginx config you need to add try_files $uri $uri/ /index.html;
to you /
location like so. This sends everything to your index.html file.
location / {
root /var/www/html/Web/dist; // Vue dist folder
try_files $uri $uri/ /index.html;
}
- [Vuejs]-How to SUM cells from DataTables when checked?
- [Vuejs]-How to use exported functions on VueJS app?
Source:stackexchange.com