webpack/test/configCases/cache-filesystem/multicompiler-mode-cache-2/webpack.config.js

30 lines
389 B
JavaScript
Raw Normal View History

"use strict";
2024-05-01 19:33:16 +08:00
// no cache names
/** @type {import("../../../../").Configuration} */
module.exports = [
{
mode: "production",
entry: "./index",
cache: {
type: "filesystem"
}
},
{
mode: "production",
entry: "./index",
cache: {
type: "filesystem"
}
},
{
name: "3rd compiler",
mode: "production",
entry: "./index",
cache: {
type: "filesystem"
}
}
];