25 lines
571 B
JavaScript
25 lines
571 B
JavaScript
import './bootstrap'
|
|
import React from 'react'
|
|
import { createRoot } from 'react-dom/client'
|
|
import { createInertiaApp } from '@inertiajs/react'
|
|
const pages = import.meta.glob('./Pages/Studio/**/*.jsx')
|
|
|
|
function resolvePage(name) {
|
|
const path = `./Pages/${name}.jsx`
|
|
const page = pages[path]
|
|
|
|
if (!page) {
|
|
throw new Error(`Unknown studio page: ${path}`)
|
|
}
|
|
|
|
return page().then((module) => module.default)
|
|
}
|
|
|
|
createInertiaApp({
|
|
resolve: resolvePage,
|
|
setup({ el, App, props }) {
|
|
const root = createRoot(el)
|
|
root.render(<App {...props} />)
|
|
},
|
|
})
|