mirror of https://github.com/webpack/webpack.git
17 lines
258 B
JavaScript
17 lines
258 B
JavaScript
|
/** @type {import("../../../../types").Configuration} */
|
||
|
module.exports = {
|
||
|
output: {
|
||
|
filename: "[name].js",
|
||
|
assetModuleFilename: "[name][ext]"
|
||
|
},
|
||
|
target: "web",
|
||
|
module: {
|
||
|
rules: [
|
||
|
{
|
||
|
test: /\.png$/,
|
||
|
type: "asset/resource"
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
};
|