首页 > 其他 > 详细

How to ship components with images properly

时间:2021-08-23 19:31:46      阅读:14      评论:0      收藏:0      [点我收藏+]
// tsdx.config.js

const images = require(@rollup/plugin-image);

module.exports = {
  rollup(config, options) {
    config.plugins = [
      images({ include: [**/*.png, **/*.jpg] }),
      ...config.plugins,
    ]

    return config
  },
}

 

How to ship components with images properly

原文:https://www.cnblogs.com/xulei1992/p/15176992.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!