-
-
Notifications
You must be signed in to change notification settings - Fork 205
/
vite.config.ts
92 lines (85 loc) · 2.16 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
/// <reference types="vitest" />
import path from 'path'
import { fileURLToPath } from 'url'
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import svgr from 'vite-plugin-svgr'
import { nodePolyfills } from 'vite-plugin-node-polyfills'
import macrosPlugin from 'vite-plugin-babel-macros'
import { VitePWA } from 'vite-plugin-pwa'
import { manifest } from './manifest'
const srcPaths = [
'components',
'config',
'contexts',
'lib',
'models',
'pages',
'services',
'img',
'utils',
'test-utils',
]
const srcPathAliases = srcPaths.reduce((acc, dir) => {
acc[dir] = path.resolve(__dirname, `./src/${dir}`)
return acc
}, {})
const config = () => {
return defineConfig({
// NOTE: Uncomment this if you are hosting Chitchatter on GitHub Pages
// without a custom domain. If you renamed the repo to something other than
// "chitchatter", then use that instead of "chitchatter" here.
// base: '/chitchatter/',
build: {
// NOTE: This isn't really working. At the very least, it's still useful
// for exposing source code to users.
// See: https://github.com/vitejs/vite/issues/15012#issuecomment-1956429165
sourcemap: true,
},
plugins: [
svgr({
include: '**/*.svg?react',
}),
react(),
macrosPlugin(),
nodePolyfills({
globals: {
Buffer: true,
global: true,
process: true,
},
protocolImports: true,
}),
VitePWA({
registerType: 'prompt',
devOptions: {
enabled: false,
},
injectRegister: 'auto',
filename: 'service-worker.js',
manifest,
}),
],
resolve: {
alias: {
webtorrent: fileURLToPath(
new URL(
'./node_modules/webtorrent/webtorrent.min.js',
import.meta.url
)
),
...srcPathAliases,
},
},
test: {
globals: true,
environment: 'jsdom',
setupFiles: './src/setupTests.ts',
coverage: {
reporter: ['text', 'html'],
exclude: ['node_modules/', 'src/setupTests.ts'],
},
},
})
}
export default config