Skip to content

Commit f6715ca

Browse files
authored
fix inaccurate return type (#9935)
1 parent 2f56a79 commit f6715ca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vite.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -399,7 +399,7 @@ import { resolvePageComponent } from 'laravel-vite-plugin/inertia-helpers';
399399
createInertiaApp({
400400
resolve: (name) => resolvePageComponent(`./Pages/${name}.vue`, import.meta.glob('./Pages/**/*.vue')),
401401
setup({ el, App, props, plugin }) {
402-
return createApp({ render: () => h(App, props) })
402+
createApp({ render: () => h(App, props) })
403403
.use(plugin)
404404
.mount(el)
405405
},

0 commit comments

Comments
 (0)