1.0.1 • Published 6 years ago

wepy-plugin-cos-image-url v1.0.1

Weekly downloads
1
License
ISC
Repository
-
Last release
6 years ago

##微信小程序 wecos 瘦身url替换工具

###安装

npm i -D wepy-plugin-cos-image-url

###配置

wepy.config.js plugins中加入

const wecos_remote_url = 'https://mina-****.coscd.myqcloud.com/****/static'
module.exports.plugins = {
    /*
    other plugins
    */ 
   
    'cos-image-url': {
      filter: /\.(wxss|wxml|js)/,
      config: {
        find: /\/cos\/static.*?\.(png|jpg|jpeg|svg|gif)/ig,
        replace: function(match) {
          return match.replace(/\/cos\/static/, wecos_remote_url) + `?v=${Date.now()}`
        }
      }
    }
  }

替换wecos本地/cos/static 路径为配置的远程 wecos_remote_url