webpack-material-design-icons

Webpack Material Design Icons Font

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
webpack-material-design-icons
1010.1.06 years ago7 years agoMinified + gzip package size for webpack-material-design-icons in KB

Readme

webpack-material-design-icons
Webpack Material Design Icons Font from Material Icons Guide - Setup Method 2. Self hosting

Install

npm install --save-dev webpack-material-design-icons

Usage

Just add webpack-material-design-icons to entry.vendors and handle the png, woff, ttf etc files in webpack.config.js
module.exports = {
    entry: {
        vendors: [
            "webpack-material-design-icons"
            ]
    },
    module: {
        loaders: [
        { test: /\.(jpe?g|png|gif|svg|eot|woff|ttf|svg|woff2)$/, loader: "file?name=[name].[ext]" }
        ]
    }
};
Of course you will need to configure how to handle CSS files as well.

TODO

  • Add working example.