Skip to content

Commit 0e6d6e8

Browse files
committed
Fix default page paths
1 parent 5ae6361 commit 0e6d6e8

12 files changed

+1
-1
lines changed
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

resources/js/app.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ const appName = import.meta.env.VITE_APP_NAME || 'Laravel';
2424

2525
createInertiaApp({
2626
title: (title) => `${title} - ${appName}`,
27-
resolve: (name) => resolvePageComponent(`./pages/${name}.vue`, import.meta.glob<DefineComponent>('./pages/**/*.vue')),
27+
resolve: (name) => resolvePageComponent(`./Pages/${name}.vue`, import.meta.glob<DefineComponent>('./Pages/**/*.vue')),
2828
setup({ el, App, props, plugin }) {
2929
createApp({ render: () => h(App, props) })
3030
.use(plugin)

0 commit comments

Comments
 (0)