Skip to content

Latest commit

 

History

History
26 lines (22 loc) · 357 Bytes

webpack-mpvue-asset-plugin.md

File metadata and controls

26 lines (22 loc) · 357 Bytes
sidebar prev next
true
false
false

webpack-mpvue-plugin

mpvue 资源路径解析插件

使用示例:

const MpvuePlugin = require('webpack-mpvue-asset-plugin')
// webpack config
{
  entry: [],
  output: {
    path: path.resolve(__dirname, 'dist'),
    filename: 'foo.bundle.js'
  },
  plugins: [
    new MpvuePlugin()
  ]
};