You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 28, 2022. It is now read-only.
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
]
};
};
`
The text was updated successfully, but these errors were encountered: