Open debjit opened 3 years ago
Can you share your code?
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