File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 71
71
key : ${{ matrix.os }}-node-v${{ matrix.node }}-deps-${{ hashFiles(format('{0}{1}', github.workspace, '/package-lock.json')) }}
72
72
- name : Versioning
73
73
env :
74
- GH_TOKEN : ${{ secrets.GH_TOKEN }}
75
74
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
76
75
NPM_TOKEN : ${{ secrets.NPM_TOKEN }}
77
76
run : |
Original file line number Diff line number Diff line change 1
1
import { defineNuxtConfig } from 'nuxt/config' ;
2
2
import { readPackage } from 'read-pkg' ;
3
3
import svgLoader from 'vite-svg-loader' ;
4
+ import checker from 'vite-plugin-checker' ;
4
5
5
6
import type { NuxtConfig } from '@nuxt/schema' ;
6
7
import * as postcssFunctions from './postcss/functions' ;
@@ -67,6 +68,9 @@ export default defineNuxtConfig({
67
68
plugins : [
68
69
svgLoader ( {
69
70
defaultImport : 'component' // or 'raw'
71
+ } ) ,
72
+ checker ( {
73
+ vueTsc : true
70
74
} )
71
75
]
72
76
} ,
You can’t perform that action at this time.
0 commit comments