Skip to content

Commit 45176b2

Browse files
committed
chore: fix typecheck
1 parent a242b88 commit 45176b2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/core/playground/src/main.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import { createApp } from 'vue'
22
import { createRouter, createWebHistory } from 'vue-router'
3+
// @ts-expect-error skip type check
34
import { routes } from 'vue-router/auto-routes'
45

56
import App from './App.vue'

packages/rolldown/src/nuxt.config.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,6 @@ export default defineNuxtConfig({
9393
vite: {
9494
base: BASE,
9595
build: {
96-
// @ts-expect-error skip type check
9796
rolldownOptions: {
9897
devtools: {},
9998
},
@@ -121,10 +120,10 @@ export default defineNuxtConfig({
121120
],
122121
},
123122
devtools: {
123+
enabled: false,
124124
clientAuth: false,
125125
},
126126
plugins: [
127-
// @ts-expect-error skip type check
128127
NUXT_DEBUG_BUILD ? Inspect({ build: true }) : null,
129128
],
130129
},

0 commit comments

Comments
 (0)