Skip to content

Commit 66b23ae

Browse files
committedMay 22, 2024··
fix(runtime-utils): ts-ignore #build/ import until nuxt v3.12 release
1 parent 293cead commit 66b23ae

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed
 

‎src/runtime-utils/mount.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ import type { RouteLocationRaw } from 'vue-router'
77

88
import { RouterLink } from './components/RouterLink'
99

10-
// @ts-expect-error virtual file
10+
// TODO: remove after Nuxt v3.12
11+
// @ts-ignore for backwards compatibility
1112
import NuxtRoot from '#build/root-component.mjs'
1213
import { tryUseNuxtApp, useRouter } from '#imports'
1314

‎src/runtime-utils/render.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ import type { RouteLocationRaw } from 'vue-router'
66

77
import { RouterLink } from './components/RouterLink'
88

9-
// @ts-expect-error virtual file
9+
// TODO: remove after Nuxt v3.12
10+
// @ts-ignore for backwards compatibility
1011
import NuxtRoot from '#build/root-component.mjs'
1112
import { tryUseNuxtApp, useRouter } from '#imports'
1213

0 commit comments

Comments
 (0)
Please sign in to comment.