weex -v
v1.3.11
在webpack 里面添加
{ test: /\.(jpg|jpeg|gif|png)$/, use: [{ loader: 'url-loader', options: { limit: 10000, name: 'img/[name].[sha512:hash:base64:7].[ext]' }, }], exclude: config.excludeModuleReg},
web环境能看到它变成了base64, 并且能使用
运行npm run andriod 或者 npm run ios
报错
WARNING in ./src/images/index/icon-close.png Module parse failed: Unexpected character '�' (1:0) You may need an appropriate loader to handle this file type.
自行 npm install url-loader file-loader 也没用
守着星空守着你
相关分类