Skip to content

Commit

Permalink
fix:app to App typo change
Browse files Browse the repository at this point in the history
ssr.js file
  • Loading branch information
openweb-dev committed Jan 27, 2025
1 parent 0a798fa commit b65b0d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions resources/js/ssr.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ createServer((page) => createInertiaApp({
return pages[`./Pages/${name}.vue`]
},
title: title => title ? `${title} - Ping CRM` : 'Ping CRM',
setup({ app, props, plugin }) {
setup({ App, props, plugin }) {
return createSSRApp({
render: () => h(app, props),
render: () => h(App, props),
}).use(plugin)
},
}))

0 comments on commit b65b0d9

Please sign in to comment.