mirror of https://github.com/webpack/webpack.git
9 lines
236 B
JavaScript
9 lines
236 B
JavaScript
|
|
/** @type {import("../../../types").Configuration} */
|
||
|
|
module.exports = {
|
||
|
|
mode: "production",
|
||
|
|
entry: "./index",
|
||
|
|
externals: {
|
||
|
|
test: "commonjs very-very-very-very-long-external-module-readable-identifier-it-should-be-truncated"
|
||
|
|
}
|
||
|
|
};
|