26 lines
716 B
TypeScript
26 lines
716 B
TypeScript
import type { DefineComponent } from 'vue'
|
|
import { createInertiaApp } from '@inertiajs/vue3'
|
|
|
|
import ui from '@nuxt/ui/vue-plugin'
|
|
import { resolvePageComponent } from 'laravel-vite-plugin/inertia-helpers'
|
|
import { createApp, h } from 'vue'
|
|
import '../css/app.css'
|
|
import './bootstrap'
|
|
|
|
const appName = import.meta.env.VITE_APP_NAME || 'Laravel'
|
|
|
|
createInertiaApp({
|
|
title: title => (title ? `${title} - ${appName}` : appName),
|
|
resolve: name =>
|
|
resolvePageComponent(
|
|
`./Pages/${name}.vue`,
|
|
import.meta.glob<DefineComponent>('./Pages/**/*.vue'),
|
|
),
|
|
setup({ el, App, props, plugin }) {
|
|
createApp({ render: () => h(App, props) })
|
|
.use(plugin)
|
|
.use(ui)
|
|
.mount(el)
|
|
},
|
|
})
|