Skip to content

Commit dd421fc

Browse files
authored
Fixes and dep updates (#90)
* Remove some console spam * Update deps
1 parent c702c84 commit dd421fc

File tree

4 files changed

+2610
-1222
lines changed

4 files changed

+2610
-1222
lines changed

composables/useDirection.js

-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ export function useDirection() {
99
// Ensure the code runs only on the client side
1010
if (typeof window !== 'undefined') {
1111
document.documentElement.setAttribute('dir', direction.value);
12-
console.log('Direction set to:', direction.value);
1312
}
1413
}
1514

package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@
1111
},
1212
"devDependencies": {
1313
"@nuxt/devtools": "latest",
14-
"@nuxt/image": "^1.3.0",
15-
"@nuxtjs/color-mode": "^3.3.2",
14+
"@nuxt/image": "^1.5.0",
15+
"@nuxtjs/color-mode": "^3.4.0",
1616
"@nuxtjs/i18n": "8.1.1",
17-
"nuxt": "^3.10.3",
18-
"vue": "^3.4.19",
17+
"nuxt": "^3.11.2",
18+
"vue": "^3.4.21",
1919
"vue-router": "^4.3.0"
2020
},
2121
"dependencies": {
2222
"omorphia": "^0.7.3",
23-
"sass": "^1.71.1"
23+
"sass": "^1.75.0"
2424
}
2525
}

pages/index.vue

+1-3
Original file line numberDiff line numberDiff line change
@@ -145,9 +145,7 @@ const features: any = ref([
145145
<h1>{{ $t("content.home.features.title") }}</h1>
146146
<iframe width="1120" height="630" :src="`https://www.youtube-nocookie.com/embed/${$t(
147147
'content.home.features.videoID'
148-
)}`" title="YouTube video player" frameborder="0"
149-
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
150-
allowfullscreen></iframe>
148+
)}`" title="YouTube video player" frameborder="0" allowfullscreen></iframe>
151149
<div class="features">
152150
<div v-for=" feature in features" class="feature-block">
153151
<div>

0 commit comments

Comments
 (0)