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

27 lines
438 B
JavaScript

"use strict";
/** @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",
crossOriginLoading: "anonymous",
chunkFormat: "array-push"
},
performance: {
hints: false
},
optimization: {
minimize: false
}
};