mirror of https://github.com/webpack/webpack.git
30 lines
416 B
JavaScript
30 lines
416 B
JavaScript
/** @type {import("../../../../").Configuration} */
|
|
module.exports = {
|
|
entry: {
|
|
a: "./a.js",
|
|
b: {
|
|
import: "./b.js",
|
|
chunkLoading: false
|
|
},
|
|
c: {
|
|
import: "./b.js",
|
|
asyncChunks: false
|
|
},
|
|
d: {
|
|
import: "./b.js",
|
|
asyncChunks: false,
|
|
runtime: "runtime"
|
|
}
|
|
},
|
|
output: {
|
|
filename: "[name].js"
|
|
},
|
|
target: "web",
|
|
externals: {
|
|
fs: "commonjs fs"
|
|
},
|
|
node: {
|
|
__filename: false
|
|
}
|
|
};
|