Skip to content

Commit

Permalink
Fix nginx adding trailing slash before request params
Browse files Browse the repository at this point in the history
  • Loading branch information
linearcombination committed Jun 18, 2024
1 parent 122f443 commit 85d013f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ server {
server_name _;
root /app/build/client;

location / {
location ~ .*$ {
try_files $uri $uri/ @sveltekit;
}

Expand Down

0 comments on commit 85d013f

Please sign in to comment.