build.js 309 B

1234567891011
  1. module.exports = {
  2. usingComponents: {
  3. 'my-audio': '../audio/audio'
  4. },
  5. handler (file) {
  6. // 删去原来的 audio 标签
  7. if (file.basename === 'node.wxml' || file.basename === 'node.vue') {
  8. file.contents = Buffer.from(file.contents.toString().replace(/<audio[\s\S]+?>/, ''))
  9. }
  10. }
  11. }