argoproj-labs / argocd-extension-metrics

An Argo CD extension to enable visualization of metrics in Argo CD UI.
Apache License 2.0
114 stars 27 forks source link

Reduce UI extension size #19

Closed leoluz closed 1 year ago

leoluz commented 1 year ago

Currently the UI extension has approx. 1 Mb. We should optimize and reduce the size of this file.

alexmt commented 1 year ago

I suspect you are bundling ReactDOM. Try adding it to externals in webpack config: https://github.com/argoproj-labs/argocd-extension-metrics/blob/786aabee4fd71218561fd1203f4d508bdc01a917/extensions/resource-metrics/resource-metrics-extention/ui/webpack.config.js#L21

ReactDOM is injected by Argo CD as a global variable starting from v2.5.4 https://github.com/argoproj/argo-cd/commit/67ae39e99def037a1c6a21030feebe54ad7ba39d

leoluz commented 1 year ago

fixed