You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You need to ensure the livewire-tmp folder and real-time faces are being processed correctly, you can have something like this in your AppServiceProvider, this isn't an issue with vercel.
if (config('app.vercel.enabled')) {
$paths = [
'/tmp/framework/sessions',
'/tmp/framework/cache',
'/tmp/storage/bootstrap/cache',
'/tmp/storage/framework/cache',
config('view.compiled'),
];
foreach ($paths as $path) {
if (! is_dir($path)) {
mkdir($path, 0755, true);
}
}
Bug report
Description
Laravel Livewire gets a 500 error when deploying it to vercel.
Here is what I get from logs. Vercel somehow does not show errors even app_debug=true
The text was updated successfully, but these errors were encountered: