You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
596 B
JavaScript
20 lines
596 B
JavaScript
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(<App {...props} />, el);
|
|
},
|
|
});
|
|
|
|
InertiaProgress.init({ color: '#570df8' });
|