mirror of https://github.com/webpack/webpack.git
15 lines
243 B
JavaScript
15 lines
243 B
JavaScript
|
/** @type {import("../../../../").Configuration} */
|
||
|
module.exports = {
|
||
|
target: "web",
|
||
|
output: {
|
||
|
chunkFilename: "[name].js",
|
||
|
crossOriginLoading: "anonymous"
|
||
|
},
|
||
|
optimization: {
|
||
|
minimize: false,
|
||
|
splitChunks: {
|
||
|
minSize: 1
|
||
|
}
|
||
|
}
|
||
|
};
|