require('./bootstrap') import React from 'react' import { render } from 'react-dom' import { createInertiaApp } from '@inertiajs/inertia-react' import { InertiaProgress } from '@inertiajs/progress' import 'react-toastify/dist/ReactToastify.css' const appName = window.document.getElementsByTagName('title')[0]?.innerText || 'Laravel' createInertiaApp({ title: (title) => `${title} - ${appName}`, resolve: (name) => require(`./Pages/${name}`), setup({ el, App, props }) { return render(, el); }, }); InertiaProgress.init({ color: '#570df8' })