-
Is it possible to have sourcemaps when using Mantine? Use case: I am trying to figure out why am image has a size of 40px. I need to find a place in the code where this is defined. Without sourcemaps, I need to manually search through my code and the Mantine's code. With sourcemaps, I would just click on the filename in Chrome Dev Tools and immediately see the place in the code where this is defined. I tried installing |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Mantine exports source maps, but since it is built with emotion, all styles are included in JavaScript files. Emotion styles are always added in the head and as far as I know there is not any option to have source maps that will point you to component file. |
Beta Was this translation helpful? Give feedback.
Mantine exports source maps, but since it is built with emotion, all styles are included in JavaScript files. Emotion styles are always added in the head and as far as I know there is not any option to have source maps that will point you to component file.