/
githubmirror
/
webpack
Обзор
Документация
Войти
/
githubmirror
/
webpack
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v5.100.2
examples/persistent-caching/webpack.config.js
34 строки
784 B
Alexander Akait
refactor: use `eslint-config-webpack` (#19645)
02 июл 2025, 15:10
Не верифицирован
02 июл 2025, 15:10
02a1d22
Код
Авторство
О чём код?
"use strict"; const path = require("path"); module.exports = (env = "development") => ({ mode: env, infrastructureLogging: { // Optional: print more verbose logging about caching level: "verbose" }, cache: { type: "filesystem", // changing the cacheDirectory is optional, // by default it will be in `node_modules/.cache` cacheDirectory: path.resolve(__dirname, ".cache"), // Add additional dependencies to the build buildDependencies: { // recommended to invalidate cache on config changes // This also makes all dependencies of this file build dependencies config: [__filename] // By default webpack and loaders are build dependencies } }, module: { rules: [ { test: /\.css$/, use: ["style-loader", "css-loader"] } ] } });