You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The entry can be either a `.js` or a `.vue` file. If no entry is specified, `src/App.vue` will be used.
21
-
22
-
A lib build outputs:
23
-
24
-
-`dist/myLib.common.js`
20
+
```
21
+
File Size Gzipped
25
22
26
-
A CommonJS bundle for consuming via bundlers (unfortunately, webpack currently does not support ES modules output format for bundles yet)
23
+
dist/myLib.umd.min.js 13.28 kb 8.42 kb
24
+
dist/myLib.umd.js 20.95 kb 10.22 kb
25
+
dist/myLib.common.js 20.57 kb 10.09 kb
26
+
dist/myLib.css 0.33 kb 0.23 kb
27
+
```
27
28
28
-
-`dist/myLib.umd.js`
29
+
The entry can be either a `.js` or a `.vue` file. If no entry is specified, `src/App.vue` will be used.
29
30
30
-
A UMD bundle for consuming directly in browsers or with AMD loaders
31
+
A lib build outputs:
31
32
32
-
-`dist/myLib.umd.min.js`
33
+
-`dist/myLib.common.js`: A CommonJS bundle for consuming via bundlers (unfortunately, webpack currently does not support ES modules output format for bundles yet)
33
34
34
-
Minified version of the UMD build.
35
+
-`dist/myLib.umd.js`: A UMD bundle for consuming directly in browsers or with AMD loaders
35
36
36
-
-`dist/myLib.css`
37
+
-`dist/myLib.umd.min.js`: Minified version of the UMD build.
37
38
38
-
Extracted CSS file (can be forced into inlined by setting `css: { extract: false }` in `vue.config.js`)
39
+
-`dist/myLib.css`: Extracted CSS file (can be forced into inlined by setting `css: { extract: false }` in `vue.config.js`)
0 commit comments