#Inertia\ComponentNotFoundException - No page renders on deployed server
1 messages · Page 1 of 1 (latest)
Are you sure your paths all match, with casing? Your local machine is probably case insensitive, while your server is case sensitive.
I'm sure that everything matches. My resources/app.js file looks like this
resolve: (name) => {
const pages = import.meta.glob("./pages/**/*.vue", { eager: true });
let page = pages[`./pages/${name}.vue`];
page.default.layout = Shell;
return page;
},
Any I don't think it's a case mismatch problem either. My local machine is case sensitive.
And also your Inertia config reflects the same path?
'page_paths' => [
resource_path('js/Pages'),
],
My bad
gonna aplly the fix and see if it works
That fixed it! Thanks! Forgot to check the config file, my bad