-
Notifications
You must be signed in to change notification settings - Fork 0
/
vite.config.ts
25 lines (24 loc) · 1.15 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
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
import tsconfigPaths from "vite-tsconfig-paths";
import path from "path";
import svgr from "vite-plugin-svgr";
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react(), tsconfigPaths(), svgr()],
resolve: {
alias: [
{ find: "@", replacement: path.resolve(__dirname, "src") },
{ find: "@api", replacement: path.resolve(__dirname, "src/api") },
{ find: "@atom", replacement: path.resolve(__dirname, "src/atom") },
{ find: "@assets", replacement: path.resolve(__dirname, "src/assets") },
{ find: "@components", replacement: path.resolve(__dirname, "src/components") },
{ find: "@core", replacement: path.resolve(__dirname, "src/core") },
{ find: "@hooks", replacement: path.resolve(__dirname, "src/hooks") },
{ find: "@pages", replacement: path.resolve(__dirname, "src/pages") },
{ find: "@styles", replacement: path.resolve(__dirname, "src/styles") },
{ find: "@utils", replacement: path.resolve(__dirname, "src/utils") },
{ find: "@type", replacement: path.resolve(__dirname, "src/type") },
],
},
});