forked from KelvinTegelaar/CIPP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vite.config.js
49 lines (48 loc) · 1.12 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
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import { resolve } from 'path'
import browserslistToEsbuild from 'browserslist-to-esbuild'
// eslint-disable-next-line import/default
import eslint from 'vite-plugin-eslint'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [
react(),
{
// if any eslint warnings, allow build to complete
// errors will fail the build
...eslint({
failOnWarning: false,
}),
apply: 'build',
},
{
// in dev mode, still allow build to complete
...eslint({
failOnError: false,
failOnWarning: false,
}),
apply: 'serve',
enforce: 'post',
},
],
build: {
outDir: 'build',
assetsDir: 'static',
target: browserslistToEsbuild(),
// enable source map for debugging
sourcemap: true,
},
server: {
port: 3000,
// since swa is bound to this port, kill the dev server if it's in use
strictPort: true,
host: true,
},
resolve: {
// needed for importing using absolute paths
alias: {
src: resolve('src/'),
},
},
})