Skip to content

Commit 437abff

Browse files
committed
chore(playground): added missing vite checker plugin
1 parent 4d25df2 commit 437abff

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.github/workflows/main.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,6 @@ jobs:
7171
key: ${{ matrix.os }}-node-v${{ matrix.node }}-deps-${{ hashFiles(format('{0}{1}', github.workspace, '/package-lock.json')) }}
7272
- name: Versioning
7373
env:
74-
GH_TOKEN: ${{ secrets.GH_TOKEN }}
7574
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
7675
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
7776
run: |

playground/nuxt.config.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import { defineNuxtConfig } from 'nuxt/config';
22
import { readPackage } from 'read-pkg';
33
import svgLoader from 'vite-svg-loader';
4+
import checker from 'vite-plugin-checker';
45

56
import type { NuxtConfig } from '@nuxt/schema';
67
import * as postcssFunctions from './postcss/functions';
@@ -67,6 +68,9 @@ export default defineNuxtConfig({
6768
plugins: [
6869
svgLoader({
6970
defaultImport: 'component' // or 'raw'
71+
}),
72+
checker({
73+
vueTsc: true
7074
})
7175
]
7276
},

0 commit comments

Comments
 (0)