We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 66c04cd commit 341b280Copy full SHA for 341b280
rollup.config.js
@@ -1,5 +1,6 @@
1
import vue from 'rollup-plugin-vue';
2
import commonjs from 'rollup-plugin-commonjs';
3
+import { terser } from 'rollup-plugin-terser';
4
5
export default [
6
// ESM build to be used with webpack/rollup.
@@ -12,6 +13,7 @@ export default [
12
13
plugins: [
14
vue(),
15
commonjs(),
16
+ terser(),
17
],
18
},
19
// UMD build.
@@ -25,6 +27,7 @@ export default [
25
27
26
28
29
30
31
32
33
// SSR build.
@@ -37,6 +40,7 @@ export default [
37
40
38
41
vue({ template: { optimizeSSR: true } }),
39
42
43
44
45
46
// Browser build.
@@ -50,6 +54,7 @@ export default [
50
54
51
55
52
56
57
53
58
59
60
];
0 commit comments