UNPKG

svg-spritemap-webpack-plugin

Version:

Generates symbol-based SVG spritemap from all .svg files in a directory

8 lines (7 loc) 258 B
import webpack from 'webpack'; export const applyEntryPlugin = (compiler, context, entries, name = 'main') => { entries.forEach((entry) => { const plugin = new webpack.EntryPlugin(context, entry, name); plugin.apply(compiler); }); };