MVP, working sentry scraper
This commit is contained in:
@ -1,7 +1,7 @@
|
||||
/// <reference path="../../adonisrc.ts" />
|
||||
/// <reference path="../../config/inertia.ts" />
|
||||
|
||||
import '../css/app.css';
|
||||
import '../css/app.css'
|
||||
import { createSSRApp, h } from 'vue'
|
||||
import type { DefineComponent } from 'vue'
|
||||
import { createInertiaApp } from '@inertiajs/vue3'
|
||||
@ -17,15 +17,13 @@ createInertiaApp({
|
||||
resolve: (name) => {
|
||||
return resolvePageComponent(
|
||||
`../pages/${name}.vue`,
|
||||
import.meta.glob<DefineComponent>('../pages/**/*.vue'),
|
||||
import.meta.glob<DefineComponent>('../pages/**/*.vue')
|
||||
)
|
||||
},
|
||||
|
||||
setup({ el, App, props, plugin }) {
|
||||
|
||||
createSSRApp({ render: () => h(App, props) })
|
||||
|
||||
.use(plugin)
|
||||
.mount(el)
|
||||
},
|
||||
})
|
||||
})
|
||||
|
Reference in New Issue
Block a user