Vue: to solve the problem after packing element-ui icon fonts are not displayed

Found under the build / utils.js

if (options.extract) {
   return ExtractTextPlugin.extract({
     use: loaders,
     fallback: 'vue-style-loader',
     publicPath: '../../'
   })
 } else {
   return ['vue-style-loader'].concat(loaders)
 }

 

Plus

publicPath: '../../'

 

Guess you like

Origin www.cnblogs.com/wyongz/p/11200098.html