Route Livewire assets through Laravel

This commit is contained in:
2026-06-03 06:26:57 +05:00
parent 8e4f4b3267
commit 177c316b44
+8
View File
@@ -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;
}