-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvite.config.ts
70 lines (68 loc) · 1.47 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
59
60
61
62
63
64
65
66
67
68
69
70
import { fileURLToPath, URL } from "node:url";
import { defineConfig } from "vite";
// @ts-ignore
import DefineOptions from "unplugin-vue-define-options/vite";
import Components from "unplugin-vue-components/vite";
import vue from "@vitejs/plugin-vue";
import dts from "vite-plugin-dts";
import ViteSVGLoader from "vite-svg-loader";
// https://vitejs.dev/config/
export default defineConfig({
plugins: [
vue(),
DefineOptions(),
ViteSVGLoader({
defaultImport: "component",
}),
{
...Components({
dts: true,
resolvers: [
(componentName) => {
return { name: componentName, from: "./src/components" };
},
],
}),
name: "build-only",
apply: "build",
},
{
...dts({
skipDiagnostics: false,
entryRoot: "./src",
copyDtsFiles: true,
}),
name: "build-only",
apply: "build",
},
],
build: {
lib: {
entry: "src/main.ts",
name: "sevue",
// fileName: (format) => `sevue.${format}.js`,
},
rollupOptions: {
external: ["vue"],
output: { globals: { vue: "Vue" }, exports: "named" },
},
},
resolve: {
alias: {
"@": fileURLToPath(new URL("./src", import.meta.url)),
},
},
css: {
preprocessorOptions: {
scss: {
additionalData: `
@use "sass:math";
@import "./src/styles/variables.scss";
`,
},
},
},
server: {
port: 4000,
},
});