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.
21 lines
702 B
React
21 lines
702 B
React
2 years ago
|
import './bootstrap';
|
||
|
import '../css/app.css';
|
||
|
|
||
|
import React from 'react';
|
||
|
import { render } from 'react-dom';
|
||
|
import { createInertiaApp } from '@inertiajs/inertia-react';
|
||
|
import { InertiaProgress } from '@inertiajs/progress';
|
||
|
import { resolvePageComponent } from 'laravel-vite-plugin/inertia-helpers';
|
||
|
|
||
|
const appName = window.document.getElementsByTagName('title')[0]?.innerText || 'Laravel';
|
||
|
|
||
|
createInertiaApp({
|
||
|
title: (title) => `${title} - ${appName}`,
|
||
|
resolve: (name) => resolvePageComponent(`./Pages/${name}.jsx`, import.meta.glob('./Pages/**/*.jsx')),
|
||
|
setup({ el, App, props }) {
|
||
|
return render(<App {...props} />, el);
|
||
|
},
|
||
|
});
|
||
|
|
||
|
InertiaProgress.init({ color: '#4B5563' });
|