@anlino @macmanx I had time to debug now. Seems to be the following snippet for removing version parameters, that is making problems with WP 6.2 and Bjork theme in functions.php
// Remove wp version param | css and js
function remove_wp_ver_css_js_code_paste( $src ) {
if ( strpos( $src, 'ver=' ) )
$src = remove_query_arg( 'ver', $src );
return $src;
}
// for css style file urls
add_filter( 'style_loader_src', 'remove_wp_ver_css_js_code_paste', 9999 );
// for js script file urls
add_filter( 'script_loader_src', 'remove_wp_ver_css_js_code_paste', 9999 );