-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvite.config.ts
58 lines (56 loc) · 1.57 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
/*
* @Author: nmtuan [email protected]
* @Date: 2024-08-26 19:52:34
* @LastEditors: nmtuan [email protected]
* @LastEditTime: 2024-10-15 14:08:06
* @FilePath: \ProPayAdmin\vite.config.ts
* @Description:
*
* Copyright (c) 2024 by [email protected], All Rights Reserved.
*/
import { fileURLToPath, URL } from "node:url";
import Unocss from "unocss/vite";
import AutoImport from "unplugin-auto-import/vite";
import Components from "unplugin-vue-components/vite";
import { defineConfig } from "vite";
import vue from "@vitejs/plugin-vue";
// https://vitejs.dev/config/
export default defineConfig({
server: {
host: "0.0.0.0",
},
plugins: [
vue(),
Unocss(),
AutoImport({
imports: [
"vue",
"vue-router",
"pinia",
{
axios: [["default", "axios"]],
},
{
"element-plus": ["ElMessage", "ElMessageBox"],
},
{
sift: [["default", "sift"]],
},
// 'element-plus'
],
dirs: ["./src/stores", "./src/composables"],
dts: "src/auto-imports.d.ts",
}),
Components({
// dts: 'src/components.d.ts',
// extensions: ['vue'],
// include: [/\.vue$/, /\.vue\?vue/],
// exclude: [/[\\/]node_modules[\\/]/, /[\\/]\.git[\\/]/]
}),
],
resolve: {
alias: {
"@": fileURLToPath(new URL("./src", import.meta.url)),
},
},
});