-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathvite.config.ts
41 lines (40 loc) · 973 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
import path from "path";
import { fileURLToPath, URL } from "node:url";
import { defineConfig } from "vite";
import vue from "@vitejs/plugin-vue";
export default defineConfig({
plugins: [
vue(),
{
name: "watch-public",
buildStart() {
this.addWatchFile(path.resolve(__dirname, "public/index.html"));
},
},
],
resolve: {
alias: {
"@": fileURLToPath(new URL("./src", import.meta.url)),
},
},
define: { "process.env.NODE_ENV": '"production"' },
build: {
lib: {
entry: path.resolve(__dirname, "src/index.ts"),
name: "vue-dat-gui",
formats: ["es"],
fileName: "vue-dat-gui",
},
rollupOptions: {
// external modules won't be bundled into your library
external: ["vue"],
output: {
// disable warning on src/index.ts using both default and named export
exports: "named",
globals: {
vue: "Vue",
},
},
},
},
});