-
Notifications
You must be signed in to change notification settings - Fork 0
/
vite.config.ts
47 lines (43 loc) · 1001 Bytes
/
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
/// <reference types="vitest/config" />
import vue from "@vitejs/plugin-vue";
import { fileURLToPath, URL } from "node:url";
import icons from "unplugin-icons/vite";
import { defineConfig } from "vite";
// https://vitejs.dev/config/
export default defineConfig({
plugins: [
vue(),
icons({
autoInstall: true,
scale: 1.3333, // ~24px at the current default font size of 18px
compiler: "vue3",
}),
],
resolve: {
alias: {
"@": fileURLToPath(new URL("./src", import.meta.url)),
},
},
build: {
lib: {
entry: {
"primevue/index": "src/primevue/index.ts",
"tailwind/index": "src/tailwind/index.ts",
"components/index": "src/components/index.ts",
},
},
rollupOptions: {
external: ["vue", "primevue"],
output: {
globals: {
vue: "Vue",
},
},
},
},
test: {
setupFiles: ["src/vitest-setup.ts"],
globals: true,
environment: "happy-dom",
},
});