Skip to content

Commit

Permalink
Fixed issues with layouts
Browse files Browse the repository at this point in the history
  • Loading branch information
danpastori committed Jan 6, 2025
1 parent c2606b5 commit 3108c31
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"type": "module",
"scripts": {
"dev": "vite --host",
"build": "vite build && vite build --ssr"
"build": "vite build"
},
"devDependencies": {
"@inertiajs/vue3": "^1.0.0",
Expand Down
3 changes: 3 additions & 0 deletions resources/js/Layouts/AuthenticatedLayout.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<template>
<slot />
</template>
3 changes: 3 additions & 0 deletions resources/js/Layouts/GuestLayout.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<template>
<slot />
</template>

0 comments on commit 3108c31

Please sign in to comment.