32 lines
818 B
JavaScript
32 lines
818 B
JavaScript
import '../css/app.css'
|
|
import React from 'react'
|
|
import { createInertiaApp } from '@inertiajs/react'
|
|
import { createRoot } from 'react-dom/client'
|
|
|
|
createInertiaApp({
|
|
resolve: name => {
|
|
const pages = import.meta.glob('./pages/**/*.jsx', { eager: true })
|
|
return pages[`./pages/${name}.jsx`]
|
|
},
|
|
setup({ el, App, props }) {
|
|
createRoot(el).render(<App {...props} />)
|
|
},
|
|
defaults: {
|
|
form: {
|
|
recentlySuccessfulDuration: 5000,
|
|
},
|
|
prefetch: {
|
|
cacheFor: "1m",
|
|
hoverDelay: 150,
|
|
},
|
|
visitOptions: (href, options) => {
|
|
return {
|
|
headers: {
|
|
...options.headers,
|
|
"X-Custom-Header": "value",
|
|
},
|
|
};
|
|
},
|
|
},
|
|
})
|