0.0.2 • Published 3 years ago

imagex-webpack-loader v0.0.2

Weekly downloads
105
License
MIT
Repository
github
Last release
3 years ago

ImageX Webpack Loader

一款 webpack 插件,可以将本地图片资源替换成 imagex 的图片,以优化图片和加快加载速度,使用前请先开通ImageX图片服务

安装

// use npm
npm install imagex-webpack-loader --save-dev

// use yarn
yarn add imagex-webpack-loader --dev

使用方法同 file-loader,支持 file-loader 的所有参数,主要用于上传失败后的文件处理,新增了用于图片上传和访问的参数

{
  loader: 'imagex-webpack-loader',
  test: /\.(png|jpe?g|gif|svg)$/i,
  options: {
    outputPath: 'static/media',
    name: '[name].[hash:8].[ext]',
    serviceId: '<服务ID>',
    template: '<模板名称>',
    domain: '<域名>',
    params: '<参数数组>', // 如果模板中有url参数则需要指定
    accessKey: '<accessKey>',
    secretKey: '<secretKey>',
    region: 'boe' | 'cn' | 'sg' | 'us' | 'boei18n', // 上传区域
  },
}

注意

不要对同一个图片文件同时使用 file-loader 和 imagex-webpack-loader

0.0.2

3 years ago

0.0.1

3 years ago