@@ -56,15 +56,15 @@ const { data: navigation } = await useAsyncData('navigation', () =>
56
56
class =" shrink-0 flex gap-2 items-center justify-center pb-1"
57
57
>
58
58
<img
59
- v-if =" appConfig.stylo.header.logo.src"
59
+ v-if =" appConfig.stylo.header.logo? .src"
60
60
class =" block dark:hidden h-9 lg:h-10"
61
61
:src =" appConfig.stylo.header.logo.src"
62
62
:alt =" appConfig.stylo.header.logo.alt"
63
63
/>
64
64
<img
65
65
v-if ="
66
- appConfig.stylo.header.logo.srcDark ||
67
- appConfig.stylo.header.logo.src
66
+ appConfig.stylo.header.logo? .srcDark ||
67
+ appConfig.stylo.header.logo? .src
68
68
"
69
69
class =" hidden dark:block h-9 lg:h-10"
70
70
:src ="
@@ -132,15 +132,15 @@ const { data: navigation } = await useAsyncData('navigation', () =>
132
132
<NuxtLink to =" /" >
133
133
<div class =" shrink-0 flex items-center" >
134
134
<img
135
- v-if =" appConfig.stylo.header.logo.src"
135
+ v-if =" appConfig.stylo.header? .logo? .src"
136
136
class =" block dark:hidden h-10 w-10"
137
137
:src =" appConfig.stylo.header.logo.src"
138
138
:alt =" appConfig.stylo.header.logo.alt"
139
139
/>
140
140
<img
141
141
v-if ="
142
- appConfig.stylo.header.logo.srcDark ||
143
- appConfig.stylo.header.logo.src
142
+ appConfig.stylo.header? .logo? .srcDark ||
143
+ appConfig.stylo.header? .logo? .src
144
144
"
145
145
class =" hidden dark:block h-10 w-10"
146
146
:src ="
0 commit comments