-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrollup.config.js
47 lines (42 loc) · 1.52 KB
/
rollup.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
// import { resolve } from 'path';
import { babel } from '@rollup/plugin-babel';
import commonjs from '@rollup/plugin-commonjs';
// const VENDOR_CHUNKS = [
// { name: 'three', patterns: ['three'] },
// { name: 'image', patterns: ['image'] },
// ];
export default {
plugins: [
commonjs(),
babel({ babelHelpers: 'bundled' }),
],
// output: {
// manualChunks(id) {
// if (!id.includes('node_modules')) {
// const pageMatch = id.match(/pages\/([^/]+)\//);
// if (pageMatch !== null) {
// const pageName = pageMatch[1];
// console.log('page', pageName, id);
// return pageName;
// }
// const vueMatch = id.match(/([^/\\]+)\.vue/);
// if (vueMatch !== null) {
// const vueName = vueMatch[1];
// console.log('vue', vueName, id);
// return vueName;
// }
// console.log('none', id);
// return undefined;
// }
// const libname = id.match(/node_modules\/([^/]+)\//)[1];
// for (const chunk of VENDOR_CHUNKS) {
// for (const libPattern of chunk.patterns) {
// if (new RegExp(libPattern).test(libname)) {
// return `vendor-${chunk.name}`;
// }
// }
// }
// return undefined;
// },
// },
};