production.ERROR: Livewire encountered corrupt data when trying to hydrate a
I have This Log After Installed self hoster ssl + reverb config using nginx
full log
[2025-05-13 19:24:00] production.ERROR: Livewire encountered corrupt data when trying to hydrate a component.
Ensure that the [name, id, data] of the Livewire component wasn't tampered with between requests. {"userId":1,"exception":"[object] (Livewire\Mechanisms\HandleComponents\CorruptComponentPayloadException(code: 0): Livewire encountered corrupt data when trying to hydrate a component.
Ensure that the [name, id, data] of the Livewire component wasn't tampered with between requests. at /var/www/Cash-Craft/vendor/livewire/livewire/src/Mechanisms/HandleComponents/Checksum.php:18)
[stacktrace]
my nginx config updated after reverb with https
location /app {
proxy_pass http://0.0.0.0:8080;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
}
but i have this error only inside dashboard page
0 Replies