-
Notifications
You must be signed in to change notification settings - Fork 0
/
vite.config.js
54 lines (53 loc) · 1.3 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
import { defineConfig } from 'vite';
import path from 'path';
import preact from '@preact/preset-vite';
// @ts-ignore
import hash from 'string-hash';
// eslint-disable-next-line import/no-unresolved
import sassDts from 'vite-plugin-sass-dts';
import { visualizer } from 'rollup-plugin-visualizer';
// https://vitejs.dev/config/
export default defineConfig({
plugins: [preact()].concat(
// @ts-ignore
process.env.NODE_ENV !== 'production' ? sassDts() : [],
),
build: {
sourcemap: true,
rollupOptions: {
plugins:
process.env.NODE_ENV === 'production'
? [visualizer({ filename: 'bundle-analysis.html' })]
: [],
},
},
resolve: {
alias: {
'~': path.resolve(__dirname, '/src'),
react: 'preact/compat',
'react-dom': 'preact/compat',
},
},
css: {
modules: {
generateScopedName(name, filename) {
return `${
(filename.match(/([^/\\]+?)(?:\.module).css(?:.*)$/) || ['', '_'])[1]
}-${name}-${hash(path.relative(__dirname, filename))
.toString(36)
.slice(0, 4)}`;
},
},
},
test: {
globals: true,
browser: {
enabled: true,
provider: 'playwright',
name: 'chromium',
ui: false,
headless: true,
},
setupFiles: './tests/setup.js',
},
});