I'm using grunt to concat(grunt-concat) and minify ( grunt-uglify ) my JS files and I've found the option for source maps which I have enabled. This now generates minification maps for the concat process and the minification process.
My question is how do I use these to debug the page when it is deployed? Do I need to include them in the page script or load them into my browser manually? Do I need to point the minification map to the concat map in order to get meaningful code?
Thanks in advance