The bundle from webpack renders one of my charts very differently from what I see in dev mode with hot reloading and expect to be consistent no matter what.
It is specific to a type
chart area
with polar
at true
, I use many other charts and all of them have the same render between dev
and prod
mode, as expected.
Here's what I get in dev
and what I expect to get from the bundle :
And here's what I got once I browse the webpack bundle :
Here's the highcharts config applied to it :
https://gist.github.com/sylv3r/6533e240107be42526ea77ea6ab5a13d
The webpack config I use :
https://gist.github.com/sylv3r/001a8c161a9dc580ee5d356a5e9e7155
Packages version :
"highcharts": "^6.1.0",
"highcharts-more": "^0.1.7",
"highcharts-react-official": "^1.2.0",
"webpack": "^4.23.1",
"webpack-cli": "^3.1",
"webpack-dev-middleware": "^3.0.1",
"webpack-hot-middleware": "^2.21.2",
I know this is a weird and specific issue, but any clue would be much appreciated, I'm stuck.