1.0.3 • Published 4 years ago

yc-webp-webpack-plugin v1.0.3

Weekly downloads
1
License
ISC
Repository
-
Last release
4 years ago

yc-webp-webpack-plugin

洋葱学院Png/Jpg转WebP格式化工具

Installation

npm install yc-webp-webpack-plugin

Usage

const path = require('path');
const YcWebpackPlugin = require('yc-webp-webpack-plugin');
module.exports = {
    mode: 'development',
    entry: "./index.js",
    output: {
        path: __dirname + '/dist/',
        filename: "bundle.js"
    },
    plugins:[
        new YcWebpackPlugin({
            path: path.resolve(__dirname, './img/*'),
            compressOption: {
                q: 75
            }
        })
    ]
};

具体配置请参考ycwebp

1.0.3

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago