Skip to content

Commit

Permalink
add cache busting to container
Browse files Browse the repository at this point in the history
  • Loading branch information
dskvr committed Jul 30, 2024
1 parent 4211c09 commit 1299452
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions nginx/conf.d/default.conf
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,13 @@ server {
error_page 404 =200 /index.html;

location / {
expires -1;
index index.html;
# try_files $uri $uri/ /index.html;
}

location ~ /?(.*)$ {
expires -1;
index index.html;
}
}

0 comments on commit 1299452

Please sign in to comment.