Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 382 Bytes

README.md

File metadata and controls

18 lines (14 loc) · 382 Bytes

Simple logo generator for Webpack

Usage

// npm install --save logo-generator-webpack-plugin
// or yarn add logo-generator-webpack-plugin

const LogoGeneratorWebpackPlugin = require("logo-generator-webpack-plugin");

module.exports = {
    plugins: [
        new LogoGeneratorWebpackPlugin({
            icon: { svgPath: "... some SVG path ..."}
        })
    ]
}