-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathvite.config.ts
84 lines (83 loc) · 1.92 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
/// <reference types="vitest" />
import path from "node:path";
import react from "@vitejs/plugin-react";
import autoprefixer from "autoprefixer";
import postcssExtendRule from "postcss-extend-rule";
import webpackStats from "rollup-plugin-webpack-stats";
import { defineConfig } from "vite";
import svgr from "vite-plugin-svgr";
// https://vitejs.dev/config/
export default defineConfig({
build: {
rollupOptions: {
output: {
assetFileNames: "assets/[name].[hash][extname]",
chunkFileNames: "assets/[name].[hash].js",
entryFileNames: "assets/[name].[hash].js",
},
},
},
css: {
postcss: {
plugins: [autoprefixer(), postcssExtendRule()],
},
},
plugins: [
webpackStats(),
react(),
svgr({
esbuildOptions: { loader: "tsx" },
svgrOptions: {
plugins: ["@svgr/plugin-svgo", "@svgr/plugin-jsx"],
jsxRuntime: "automatic",
svgoConfig: {
floatPrecision: 2,
plugins: [
{
name: "preset-default",
params: {
overrides: {
removeViewBox: false,
},
},
},
{
name: "removeAttrs",
params: {
attrs: "*:(stroke|fill):((?!^none$).)*",
},
},
{
name: "addClassesToSVGElement",
params: {
classNames: ["icon"],
},
},
],
},
dimensions: false,
typescript: true,
},
}),
],
resolve: {
alias: {
"@": path.resolve(__dirname, "./src"),
},
},
server: {
port: 3000,
},
preview: {
port: 3000,
},
test: {
environment: "happy-dom",
exclude: ["src/test/e2e/**", "node_modules/**"],
setupFiles: "./src/test/setup.ts",
passWithNoTests: true,
coverage: {
provider: "v8",
},
},
});