-
Notifications
You must be signed in to change notification settings - Fork 0
/
vite.config.js
65 lines (64 loc) · 1.66 KB
/
vite.config.js
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
/// <reference types="vitest" />
import {defineConfig} from "vite";
import vue from "@vitejs/plugin-vue";
export default defineConfig({
plugins: [
vue({
template: {
transformAssetUrls: {
base: null,
includeAbsolute: false,
},
},
}),
],
build: {
sourcemap: true,
},
server: {
watch: {
ignored: [
'.idea',
'.deploy',
'app/**',
'vendor/**',
'bootstrap/**',
'config/**',
'data/**',
'database/**',
'docker/**',
'routes/**',
'storage/**',
'stories/**'
]
}
},
test: {
include: ['resources/js/**/*.{test,spec}.?(c|m)[jt]s?(x)'],
exclude: [
'**/node_modules/**',
'public/',
'**/dist/**',
'**/cypress/**',
'**/.{idea,git,cache,output,temp}/**',
'stories',
'.storybook',
'app/',
'bootstrap/',
'config/',
'database/',
'routes/',
'**/{karma,rollup,webpack,vite,vitest,jest,ava,babel,nyc,cypress,tsup,build}.config.*'],
// enable jest-like global test APIs
globals: true,
// simulate DOM with happy-dom
environment: 'happy-dom',
coverage: {
enabled: true,
subdir: true,
include: ['src/js/**/*'],
provider: 'v8',
reporter: ['text', 'html']
},
}
});