Skip to content

Commit 0b1d72b

Browse files
committed
chore(playwright): fix ts
1 parent 1167dcd commit 0b1d72b

File tree

4 files changed

+3
-267
lines changed

4 files changed

+3
-267
lines changed

pnpm-lock.yaml

Lines changed: 1 addition & 254 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

test/fixtures/content/package.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,7 @@
1313
"nuxt": "^3.18.1"
1414
},
1515
"devDependencies": {
16-
"@nuxt/content": "3.6.3",
17-
"@types/node": "^20.17.10",
18-
"typescript": "5.6.3"
16+
"@nuxt/content": "3.6.3"
1917
},
2018
"overrides": {
2119
"nitropack": "2.9.6"

test/fixtures/content/pages/[key]/[...slug].vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ const route = useRoute()
2727
const { $getLocale, $localeRoute } = useI18n()
2828
2929
// Реактивная переменная для контента
30-
const doc = ref<null | string>(null)
30+
const doc = ref(null)
3131
3232
// Функция для загрузки контента
3333
const loadContent = async (path) => {

test/fixtures/content/tsconfig.json

Lines changed: 0 additions & 9 deletions
This file was deleted.

0 commit comments

Comments
 (0)