I\'m really newbie with webpack, so I\'m not sure if I\'m doing something wrong, I wish use uikit and less with webpack, I\'ve installed the respective loaders like url-load
I recommend you to write loaders in a short way
webpack.config.js
loaders: [
... other loaders
{
test: /\.(eot|woff|woff2|ttf|svg|png|jpg)$/,
loader: 'url-loader?limit=30000&name=[name]-[hash].[ext]'
}
Don't forget
npm install url-loader --save-dev
And checkout variable @icon-font-path it should be
/bower_components/uikit/less/core/icon.less
"../../fonts";