-
Notifications
You must be signed in to change notification settings - Fork 8
/
vite.config.js
64 lines (58 loc) · 1.56 KB
/
vite.config.js
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
import path from "path"
import { defineConfig } from "vite"
import vue from "@vitejs/plugin-vue"
import terser from "@rollup/plugin-terser"
import { nodeResolve } from "@rollup/plugin-node-resolve"
// import analyze from "rollup-plugin-analyzer"
const devMode = process.env.NODE_ENV === "development"
// ref: https://blog.openreplay.com/the-ultimate-guide-to-getting-started-with-the-rollup-js-javascript-bundler
function terserConfig() {
return terser({
ecma: 2020,
mangle: { toplevel: true },
compress: {
module: true,
toplevel: true,
unsafe_arrows: true,
drop_console: !devMode,
drop_debugger: !devMode,
},
output: { quote_style: 1 },
})
}
// https://vitejs.dev/config/
export default defineConfig({
build: {
lib: {
name: "VueSpeedometer",
entry: path.resolve(__dirname, "src/index.vue"),
fileName: (format) => `vue-speedometer.${format}.js`,
},
rollupOptions: {
external: ["vue"],
output: {
globals: {
vue: "Vue",
},
sourcemap: devMode ? "inline" : false,
plugins: [terserConfig()],
},
// IMPORTANT: This plugins is different from output plugins
plugins: [
nodeResolve(),
// analyze({
// summaryOnly: true,
// filterSummary: true,
// }),
],
},
},
resolve: {
alias: {
// ref: https://github.com/vitejs/vite/discussions/4158
// needed to enable template compiling for cypress
// vue: "vue/dist/vue.esm-bundler.js",
},
},
plugins: [vue()],
})