Enable babel build caching

This commit is contained in:
Bill Thornton 2022-09-06 02:18:19 -04:00
parent 15b4842c4f
commit 073ab54aef

View File

@ -116,7 +116,11 @@ module.exports = {
test: /\.(js|jsx)$/,
exclude: /node_modules[\\/](?!@uupaa[\\/]dynamic-import-polyfill|blurhash|date-fns|epubjs|flv.js|libarchive.js|marked|react-router|screenfull)/,
use: [{
loader: 'babel-loader'
loader: 'babel-loader',
options: {
cacheCompression: false,
cacheDirectory: true
}
}]
},
{
@ -140,6 +144,8 @@ module.exports = {
use: [{
loader: 'babel-loader',
options: {
cacheCompression: false,
cacheDirectory: true,
plugins: [
'@babel/transform-modules-umd'
]