-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvite.config.js
More file actions
47 lines (46 loc) · 835 Bytes
/
Copy pathvite.config.js
File metadata and controls
47 lines (46 loc) · 835 Bytes
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
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import devtools from 'vite-plugin-vue-devtools'
import { resolve } from 'node:path'
import tailwindcss from '@tailwindcss/vite'
export default defineConfig({
css: {
preprocessorOptions: {
scss: {
api: 'modern-compiler' // or "modern"
},
sass: {
api: 'modern-compiler' // or "modern"
}
}
},
server: {
port: 8080
},
resolve: {
alias: {
'@': resolve('./src')
}
},
plugins: [
tailwindcss(),
devtools(),
vue()
],
test: {
environment: 'jsdom',
reporters: [
'default'
],
coverage: {
enabled: true,
include: [
'src/**'
],
reportsDirectory: './tests/unit/coverage',
reporter: [
'html'
]
}
}
})