-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvite.config.ts
51 lines (42 loc) · 1.11 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
/* eslint-env node */
import path from 'path';
import { defineConfig } from 'vite';
import tsconfigPaths from 'vite-tsconfig-paths';
import imageminSvgo from 'imagemin-svgo';
import type { ITransform } from './vite_plugins';
import { vitePluginFilesTransformer } from './vite_plugins';
import { toLowQuality, toWebp } from './vite_plugins/defaultTransforms';
const toMinifiedSvgCore = imageminSvgo({});
const toMinifiedSvg: ITransform = {
name: 'svg-minification',
getNewFilePath: (filePath) => filePath,
transform: (value) => toMinifiedSvgCore(value),
};
export default defineConfig({
root: './',
build: {
sourcemap: true,
},
server: {
host: '0.0.0.0',
port: 3000,
},
plugins: [
tsconfigPaths(),
vitePluginFilesTransformer({
transforms: [toWebp, toLowQuality],
patterns: ['**/*.{jpg,webp}'],
ignores: ['.gen'],
}),
vitePluginFilesTransformer({
transforms: [toMinifiedSvg],
patterns: ['**/*.svg'],
}),
],
resolve: {
alias: {
'@': path.resolve(__dirname, 'src'),
'@styles': path.resolve(__dirname, 'src', 'styles'),
},
},
});