server {
listen 80;
server_name localhost;
root /dist;
location / {
try_files $uri $uri/ /index.html;
add_header Cache-Control 'no-store';
}