-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvite.config.js
33 lines (32 loc) · 1.02 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
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
import path from "path";
// https://vitejs.dev/config/
export default defineConfig(() => {
return {
plugins: [react()],
resolve: {
alias: {
"@": path.resolve(__dirname, "./src/"),
components: path.resolve(__dirname, "./src/components/"),
public: path.resolve(__dirname, "./public/"),
modules: path.resolve(__dirname, "./src/modules"),
services: path.resolve(__dirname, "./src/services"),
store: path.resolve(__dirname, "./src/store"),
constants: path.resolve(__dirname, "./src/constants"),
routes: path.resolve(__dirname, "./src/routes"),
styles: path.resolve(__dirname, "./src/styles"),
mocks: path.resolve(__dirname, "./src/mocks"),
utils: path.resolve(__dirname, "./src/utils"),
},
},
test: {
globals: true,
environment: "jsdom",
setupFiles: "src/setup.js",
coverage: {
reporter: ["text"],
},
},
};
});