webpack/test/configCases/web/prefetch-preload-module-jsonp/webpack.config.js

27 lines
438 B
JavaScript
Raw Normal View History

"use strict";
2024-03-25 21:48:46 +08:00
/** @type {import("../../../../").Configuration} */
module.exports = {
entry: "./index.mjs",
experiments: {
outputModule: true,
css: true
},
name: "esm",
target: "web",
output: {
publicPath: "",
module: true,
filename: "bundle0.mjs",
chunkFilename: "[name].js",
2024-10-02 06:29:54 +08:00
crossOriginLoading: "anonymous",
chunkFormat: "array-push"
2024-03-25 21:48:46 +08:00
},
performance: {
hints: false
},
optimization: {
minimize: false
}
};