-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
vitest.config.js
35 lines (34 loc) · 861 Bytes
/
vitest.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
import { defineConfig } from 'vitest/config'
import vue from '@vitejs/plugin-vue2'
import Components from 'unplugin-vue-components/vite'
import { VuetifyResolver } from 'unplugin-vue-components/resolvers'
import path from 'path'
export default defineConfig({
resolve: {
alias: {
'src': path.resolve(__dirname, 'src'),
'components': path.resolve(__dirname, 'src/components'),
'assets': path.resolve(__dirname, './src/assets'),
'tests': path.resolve(__dirname, './tests'),
'@': path.resolve(__dirname, './src'),
},
},
test: {
environment: 'happy-dom'
},
plugins: [
vue(),
Components({
resolvers: [VuetifyResolver()],
})
],
css: {
// https://vitejs.dev/config/#css-preprocessoroptions
preprocessorOptions: {
sass: {
additionalData: [
]
},
},
},
})