mirror of https://github.com/webpack/webpack.git
30 lines
389 B
JavaScript
30 lines
389 B
JavaScript
|
"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: "3rd compiler",
|
||
|
mode: "production",
|
||
|
entry: "./index",
|
||
|
cache: {
|
||
|
type: "filesystem"
|
||
|
}
|
||
|
}
|
||
|
];
|