-
Notifications
You must be signed in to change notification settings - Fork 11
/
vite.config.ts
56 lines (55 loc) · 1.18 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
import vue from "@vitejs/plugin-vue"
import Icons from "unplugin-icons/vite"
import { defineConfig } from "vite"
import dts from "vite-plugin-dts"
import Unfonts from "unplugin-fonts/vite"
export default defineConfig({
plugins: [
vue(),
dts({
insertTypesEntry: true,
skipDiagnostics: true,
outputDir: ["dist"],
}),
Icons({
compiler: "vue3",
}),
Unfonts({
fontsource: {
families: [
{
name: "Inter Variable",
variables: ["variable-full"],
},
{
name: "Material Symbols Rounded Variable",
variables: ["variable-full"],
},
{
name: "Roboto Mono Variable",
variables: ["variable-full"],
},
],
},
}),
], // to process SFC
build: {
sourcemap: true,
minify: false,
lib: {
entry: {
index: "./src/index.ts",
"ui-preset": "./ui-preset.ts",
"postcss.config": "./postcss.config.cjs",
},
formats: ["es"],
},
rollupOptions: {
external: ["vue"],
output: {
exports: "named",
},
},
emptyOutDir: true,
},
})