-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvite.config.js
66 lines (65 loc) · 1.46 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
import path from 'node:path';
import fs from 'fs';
import { defineConfig } from 'vite';
import { svelte, vitePreprocess } from '@sveltejs/vite-plugin-svelte';
import viteCompression from 'vite-plugin-compression';
import viteImagemin from 'vite-plugin-imagemin';
// TODO: Currently there is a bug where Vite dev dont handle trailing slash
// https://github.com/vitejs/vite/issues/6596
export default defineConfig(({command}) => ({
base: process.env.PUBLIC_PATH,
root: 'src',
build: {
outDir: '../dist',
emptyOutDir: true
},
css: {
preprocessorOptions: {
scss: {
additionalData:`$is-dev: ${command === 'serve'};`
}
}
},
plugins: [
svelte({
preprocess: [vitePreprocess()],
}),
viteImagemin({
gifsicle: {
optimizationLevel: 7,
interlaced: false,
},
optipng: {
optimizationLevel: 7,
},
mozjpeg: {
quality: 82,
},
pngquant: {
quality: [0.8, 0.9],
speed: 4,
},
svgo: {
// plugins: [
// {
// name: 'removeViewBox',
// },
// {
// name: 'removeEmptyAttrs',
// active: false,
// },
// ],
},
}),
viteCompression({
filter: /\.(js|mjs|json|css|map)$/i
})
],
resolve: {
alias: {
'@': path.resolve(__dirname, './src'),
'$lib': path.resolve(__dirname, './src/lib')
},
preserveSymlinks: true,
}
}));