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

23 lines
299 B
JavaScript
Raw Normal View History

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