-
Notifications
You must be signed in to change notification settings - Fork 8
/
vite.config.ts
41 lines (40 loc) · 943 Bytes
/
vite.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/// <reference types="vitest" />
import eslintPlugin from '@nabla/vite-plugin-eslint'
import react from '@vitejs/plugin-react'
import { defineConfig } from 'vite'
import { VitePWA } from 'vite-plugin-pwa'
import tsconfigPaths from 'vite-tsconfig-paths'
export default defineConfig(({ mode }) => ({
// override-prefix
base: '/unicef-ai4d-research-bank',
test: {
css: false,
include: ['src/**/__tests__/*'],
globals: true,
environment: 'jsdom',
setupFiles: 'src/setupTests.ts',
clearMocks: true,
coverage: {
provider: 'istanbul',
enabled: true,
'100': true,
reporter: ['text', 'lcov'],
reportsDirectory: 'coverage'
}
},
plugins: [
tsconfigPaths(),
react(),
...(mode === 'test'
? []
: [
eslintPlugin(),
VitePWA({
registerType: 'autoUpdate',
includeAssets: ['robots.txt', 'icons/*.svg', 'fonts/*.woff2'],
manifest: {}
})
])
],
assetsInclude: ['**/*.md']
}))