Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

general's avatar

Inertia with Laravel + SSR + Supervisor issue

Hi we successfully deployed our app to server. App is built in Laravel + Inertia and is using SSR (supervisor) Everything works as expected but sometimes we get following error:

[Vue warn]: Unhandled error during execution of render function
 at <Anonymous >
Level
ERROR
{
    "class": "Inertia\Ssr\SsrException",
    "message": "[Vue warn]: Unhandled error during execution of render function \n  at <Anonymous >\n",
    "code": 0,
    "file": "/data/web/x/sub/y/vendor/inertiajs/inertia-laravel/src/Commands/StartSsr.php:82",
    "trace": [
        "/data/web/x/sub/y/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php:36",
        "/data/web/x/sub/y/vendor/laravel/framework/src/Illuminate/Container/Util.php:41",
        "/data/web/x/sub/y/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php:93",
        "/data/web/x/sub/y/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php:37",
        "/data/web/x/sub/y/vendor/laravel/framework/src/Illuminate/Container/Container.php:662",
        "/data/web/x/sub/y/vendor/laravel/framework/src/Illuminate/Console/Command.php:211",
        "/data/web/x/sub/y/vendor/symfony/console/Command/Command.php:326",
        "/data/web/x/sub/y/vendor/laravel/framework/src/Illuminate/Console/Command.php:181",
        "/data/web/x/sub/y/vendor/symfony/console/Application.php:1096",
        "/data/web/x/sub/y/vendor/symfony/console/Application.php:324",
        "/data/web/x/sub/y/vendor/symfony/console/Application.php:175",
        "/data/web/x/sub/y/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php:201",
        "/data/web/x/sub/y/artisan:37"
    ]
}

Any idea what's the reason of error? Everything is working fine just sometimes this error pops in laravel log...

0 likes
1 reply
gych's avatar

Its hard to say what exactly caused this Vue warning. You could try to check the server logs and see which request was made right before this warning was triggered.

Please or to participate in this conversation.