From 14598d4d5d221170d9d93da1c19f797fe8bead34 Mon Sep 17 00:00:00 2001 From: Matan Borenkraout Date: Mon, 21 Jun 2021 10:21:45 +0300 Subject: [PATCH] chore: add dry false config to CleanWebpackPlugin (#14691) --- superset-frontend/webpack.config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/superset-frontend/webpack.config.js b/superset-frontend/webpack.config.js index 7b26b459a1..00b0439e66 100644 --- a/superset-frontend/webpack.config.js +++ b/superset-frontend/webpack.config.js @@ -146,6 +146,7 @@ if (!process.env.CI) { if (!isDevServer) { plugins.push( new CleanWebpackPlugin({ + dry: false, // required because the build directory is outside the frontend directory: dangerouslyAllowCleanPatternsOutsideProject: true, }),