OK, trying to move our Vuetify app to L8, Jetstream and the inertia stack. I see this line in ./resources/js/app.js
const app = document.getElementById('app');
It's grabbing the app element in the DOM.
My question is --- what defined the app.
In my L7 app, it's defined in the single blade.php
<!-- Styles -->
<link href="{{ asset('css/app.css') }}" rel="stylesheet">
</head>
<body>
<div id="app"></div>
<script src="{{ asset('js/app.js') }}" defer></script>
</body>
I can't find it in L8 and this gets this....
initialPage: JSON.parse(app.dataset.page),
[Vue warn]: Error in render: "SyntaxError: Unexpected token u in JSON at position 0"
Thanks, Jim in Florida