mirror of
https://github.com/MrUnknownDE/panel.git
synced 2026-04-26 18:23:43 +02:00
Stop caching stupid things and causing builds to die
This commit is contained in:
@@ -28,9 +28,6 @@ module.exports = {
|
||||
test: /\.tsx?$/,
|
||||
exclude: /node_modules/,
|
||||
loader: 'babel-loader',
|
||||
options: {
|
||||
cacheDirectory: !isProduction,
|
||||
},
|
||||
},
|
||||
{
|
||||
test: /\.css$/,
|
||||
@@ -92,7 +89,7 @@ module.exports = {
|
||||
minimize: isProduction,
|
||||
minimizer: [
|
||||
new TerserPlugin({
|
||||
cache: true,
|
||||
cache: isProduction,
|
||||
parallel: true,
|
||||
extractComments: false,
|
||||
terserOptions: {
|
||||
|
||||
Reference in New Issue
Block a user