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

yonder.cool's avatar

Should I separate the SPA part and other website parts?

Hey! The question is should I separate the SPA part and other website parts (blog, community, etc.)?

I have an application written by Laravel, InertiaJS and Vue, but at this moment I want to add some blog and community to my application. The problem is that I want to show my blog posts in the community to search engines. I don't really want to install SSR. So, is it a good idea (the correct way) to separate my SPA part (to console subdomain) and other parts written in the blade?

0 likes
1 reply
undeportedmexican's avatar

I encountered something like this in the past.

What I did was build a hybrid Livewire / Inertia app.

In the end, everything is controlled by the same backend, so it worked for me.

The only thing I needed to do was create 2 separate app.blade.php files, 1 for livewire and 1 for inertia.

Please or to participate in this conversation.