mirror of https://github.com/webpack/webpack.git
11 lines
225 B
JavaScript
11 lines
225 B
JavaScript
|
|
var ComponentPlugin = require("component-webpack-plugin");
|
||
|
|
module.exports = {
|
||
|
|
module: {
|
||
|
|
loaders: [
|
||
|
|
{ test: /\.png$/, loader: "url-loader?limit=10000&minetype=image/png" }
|
||
|
|
]
|
||
|
|
},
|
||
|
|
plugins: [
|
||
|
|
new ComponentPlugin()
|
||
|
|
]
|
||
|
|
}
|