diff --git a/nginx/nginx.conf b/nginx/nginx.conf index 03120a3..45e52da 100644 --- a/nginx/nginx.conf +++ b/nginx/nginx.conf @@ -12,6 +12,14 @@ server { add_header Content-Type text/plain; } + location ^~ /livewire { + try_files $uri $uri/ /index.php?$query_string; + } + + location ^~ /flux { + try_files $uri $uri/ /index.php?$query_string; + } + location / { try_files $uri $uri/ /index.php?$query_string; }