This repository was archived by the owner on Oct 28, 2022. It is now read-only.
  
  
  
  
  
Description
Here is code snippet to test. Function output should be merged into webpack config:
`
export const plugins = {
HtmlPlugin: require('html-webpack-plugin'),
ExtractTextPlugin: require('extract-text-webpack-plugin'),
};
// Font generator
//
export const fontgen = () => {
const extractFontCss = new plugins.ExtractTextPlugin('2', 'assets/css/[id].[contenthash].icons.css');
return {
module: {
loaders: [{
test: /icons.json$/,
loader: extractFontCss.extract('vue-style', 'css!fontgen?fileName=assets/fonts/[fontname].[hash][ext]'),
}],
},
plugins: [
extractFontCss
]
};
};
`