-
Notifications
You must be signed in to change notification settings - Fork 6
/
vite.config.js
61 lines (54 loc) · 1.56 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
import { defineConfig } from "vite";
import { svelte } from "@sveltejs/vite-plugin-svelte";
import { viteSingleFile } from "vite-plugin-singlefile";
import sveltePreprocess from 'svelte-preprocess';
import svgLoader from 'vite-svg-loader'
const production = process.env.NODE_ENV === 'production';
// https://vitejs.dev/config/
export default defineConfig({
root: "./src",
plugins: [svelte({
configFile: '../svelte.config.cjs',
emitCss: production,
compilerOptions: {
dev: !production,
},
//@ts-ignore This is temporary until the type definitions are fixed!
hot: !production,
}), svgLoader({
defaultImport: 'raw',
svgoConfig: {
multipass: true,
plugins: [
// set of built-in plugins enabled by default
'preset-default',
'removeDimensions',
// enable built-in plugins by name
'prefixIds',
{
name: 'convertColors',
params: {
currentColor: true
}
}]
}
})
, viteSingleFile()],
test: {
// ...
},
build: {
sourcemap: true,
target: "esnext",
assetsInlineLimit: 100000000,
chunkSizeWarningLimit: 100000000,
cssCodeSplit: false,
brotliSize: false,
outDir: "../public",
rollupOptions: {
output: {
inlineDynamicImports: true,
}
},
},
});