webpack/test/configCases/web/fetch-priority-2/webpack.config.js

29 lines
404 B
JavaScript
Raw Normal View History

"use strict";
2023-04-23 08:36:14 +08:00
/** @type {import("../../../../").Configuration} */
module.exports = {
target: "web",
output: {
chunkFilename: "[name].js",
crossOriginLoading: "anonymous"
},
optimization: {
minimize: false,
splitChunks: {
minSize: 1
}
},
module: {
2023-05-24 13:18:26 +08:00
rules: [
{
test: /d\.js$/,
parser: {
javascript: {
dynamicImportFetchPriority: "low"
}
}
2023-04-23 08:36:14 +08:00
}
2023-05-24 13:18:26 +08:00
]
2023-04-23 08:36:14 +08:00
}
};