When I include a JavaScript file in my Wicket panel using the following code:
renderJsHeaderItem(response, "js/jquery/dist/jquery.min.js");
I am encountering an error in the javascript console that reads:
GET http://localhost:9080/js/jquery/dist/jquery.min.map 404 (Not Found)
How can I properly add the map file to my Panel's code? (as well as for css.map)
Thank you!