-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvite.config.ts
53 lines (51 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
/// <reference types="vitest" />
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
import svgr from 'vite-plugin-svgr';
import { viteStaticCopy } from 'vite-plugin-static-copy';
import postcssUrl from 'postcss-url';
// https://vitejs.dev/config/
export default defineConfig({
base: '/',
build: {
outDir: 'build'
},
test: {
include: ['**/*{test,spec}.?(c|m)[jt]s?(x)',],
globals: true,
},
plugins: [
viteStaticCopy({
targets: [
{ // copy 3rd party assets to build
src: 'node_modules/leaflet-draw/dist/images/*',
dest: 'assets/images/.'
},
]
}),
react(),
svgr({
svgrOptions: {},
}),
],
css: {
postcss: {
plugins: [
postcssUrl({
url: (asset) => {
if (asset.relativePath && !['src', 'assets'].includes(asset.relativePath.split('/')[0])) {
return `/assets/${asset.url}`;
}
return asset.url;
}
}),
]
}
},
envDir: './',
server: {
host: '0.0.0.0',
port: 4000,
origin: 'http://localhost:4000'
}
});