mirror of https://github.com/webpack/webpack.git
16 lines
188 B
JavaScript
16 lines
188 B
JavaScript
|
"use strict";
|
||
|
|
||
|
module.exports = {
|
||
|
output: {
|
||
|
assetModuleFilename: "images/[hash][ext]"
|
||
|
},
|
||
|
module: {
|
||
|
rules: [
|
||
|
{
|
||
|
test: /file\.(png|jpg|svg)$/,
|
||
|
type: "asset"
|
||
|
},
|
||
|
]
|
||
|
}
|
||
|
};
|