Vue.js Laravel App Shows Blank Page in WebView/Postman
I'm building a Flutter app with a WebView that needs to display pages from my Laravel application (using VILT stack - Vue.js, Inertia.js, Laravel, Tailwind). When trying to access these pages through either Postman or Flutter's WebView, I get a blank page with a 200 status code. This seems to be because Vue.js requires JavaScript execution to render the content, which doesn't happen in Postman, and might not be properly initialized in WebView. However, error pages display correctly since they're rendered directly by Laravel.
How can I properly display Vue.js pages in a Flutter WebView? The main issue seems to be with Vue.js rendering, as even Postman requests show blank pages despite returning 200 status code. Vue.js content is not being rendered, likely due to JavaScript execution issues.
Any help would be appreciated!
Please or to participate in this conversation.