parsley/config/webpack/loaders/svg.js
Dan Elbert 18603dc783
Some checks failed
parsley/pipeline/head There was a failure building this commit
tasks
2018-09-06 18:16:13 -05:00

11 lines
122 B
JavaScript

module.exports = {
test: /\.svg$/,
use: [{
loader: 'url-loader',
options: {
limit: 10000
}
}]
};