-
Notifications
You must be signed in to change notification settings - Fork 0
/
vite.config.ts
54 lines (53 loc) · 1.12 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
import { resolve } from 'path'
import { defineConfig, searchForWorkspaceRoot } from 'vite'
import react from '@vitejs/plugin-react'
import tsconfigPaths from 'vite-tsconfig-paths'
export default defineConfig({
plugins: [
{
name: 'watch-node-modules',
configureServer: (server: ViteDevServer): void => {
server.watcher.options = {
...server.watcher.options,
ignored: [/node_modules\/(?!@mtyk).*/, '**/.git/**'],
}
},
},
tsconfigPaths(),
react({
babel: {
parserOpts: {
plugins: ['decorators-legacy'],
},
},
}),
],
define: {
__APP_VERSION__: JSON.stringify(process.env.npm_package_version),
},
optimizeDeps: {
exclude: ['@mtyk/ui'],
},
fs: {
allow: [
// search up for workspace root
'..',
'../..',
'../../..',
],
},
base: './',
root: resolve('./src/renderer'),
server: {
port: 8081,
hmr: { overlay: false },
strictPort: true,
},
resolve: {
preserveSymlinks: true,
},
build: {
outDir: resolve('./dist/renderer'),
emptyOutDir: true,
},
})