Sep 17, 2022
Thanks for the post!
One thing that might be nice to add is updating
```
File: app.js
14: createInertiaApp({
15: title: (title) => `${title} - ${appName}`,
16: resolve: name => {
17: const page = require(`./Pages/${name}`).default
```
to
```
createInertiaApp({ resolve: (name) => resolvePageComponent(`./Pages/${name}.vue`, import.meta.glob('./Pages/**/*.vue')),
```