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

33 lines
469 B
JavaScript
Raw Normal View History

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