diff --git a/superset-frontend/webpack.config.js b/superset-frontend/webpack.config.js index d71fa2a19561d..e18065d13a65f 100644 --- a/superset-frontend/webpack.config.js +++ b/superset-frontend/webpack.config.js @@ -214,6 +214,19 @@ const config = { }, output, stats: 'minimal', + /* + Silence warning for missing export in @data-ui's internal structure. This + issue arises from an internal implementation detail of @data-ui. As it's + non-critical, we suppress it to prevent unnecessary clutter in the build + output. For more context, refer to: + https://github.com/williaster/data-ui/issues/208#issuecomment-946966712 + */ + ignoreWarnings: [ + { + message: + /export 'withTooltipPropTypes' \(imported as 'vxTooltipPropTypes'\) was not found/, + }, + ], performance: { assetFilter(assetFilename) { // don't throw size limit warning on geojson and font files