Try this:
(function($){
"use strict";
jQuery(document).ready(function(){
});
})(jQuery);
replacing the $
with jQuery
resolved this issue for me in the past.
Try this:
(function($){
"use strict";
jQuery(document).ready(function(){
});
})(jQuery);
replacing the $
with jQuery
resolved this issue for me in the past.