mirror of https://github.com/webpack/webpack.git
15 lines
162 B
JavaScript
15 lines
162 B
JavaScript
|
module.exports = {
|
||
|
mode: "development",
|
||
|
module: {
|
||
|
rules: [
|
||
|
{
|
||
|
test: /\.svg$/,
|
||
|
type: "asset/source"
|
||
|
}
|
||
|
]
|
||
|
},
|
||
|
experiments: {
|
||
|
asset: true
|
||
|
}
|
||
|
};
|