cenkai88 / vue-svg-icon

a solution for multicolor svg icons in vue2.0 (vue2.0的可变彩色svg图标方案)
https://cenkai88.github.io/vue-svg-icon/demo/
Other
562 stars 84 forks source link

npm 安装npm install --save !xml-loader!../../src/svg 失败 求教 #24

Closed sunflower-tc closed 6 years ago

sunflower-tc commented 6 years ago

安装loader的时候遇到了点问题 image 请指点迷津谢谢

jeanpco commented 6 years ago

Same issue, if anyone could help that'd great!

sunflower-tc commented 6 years ago

@Jeanallin hello,you can npm install xml-loader --save-dev

ZongDuCha commented 6 years ago

安装了依然显示* !xml-loader!../../src/svg in ./node_modules/_babel-loader@7.1.2@babel-loader/lib!./node

zepang commented 6 years ago

@ZongDuCha you need to add loader to webpack config:

module : {
  loaders : [
    { test: /\.xml$/, loader: 'xml-loader' } // will load all .xml files with xml-loader by default 
  ]
}
ZongDuCha commented 6 years ago

@zepang OK