webpack/test/configCases/asset-modules/input-data-url/webpack.config.js

19 lines
285 B
JavaScript

"use strict";
/** @type {import("../../../../").Configuration} */
module.exports = {
mode: "development",
module: {
rules: [
{
mimetype: "image/svg+xml+external",
type: "asset/resource",
generator: {
filename: "[hash].svg"
}
}
]
},
target: "web"
};