Files
layui/scripts/rollup-plugins.mjs
2025-11-04 15:09:10 +08:00

20 lines
407 B
JavaScript

/**
* Rollup Custom Plugins
*/
// 压缩后添加头部注释
export function banner(options = {}) {
const bannerComment = options.comment || '';
return {
name: 'banner',
generateBundle(_, bundle) {
// chunk 生成后
for (const file of Object.values(bundle)) {
if (file.type === 'chunk') {
file.code = bannerComment + file.code;
}
}
},
};
}