We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Minit makes the following assumptions:
async
Minit doesn't support any scripts in the <head />. The only options is to exclude the specific script from Minit completely:
<head />
add_filter( 'minit-exclude-js', function ( $handles ) { $exclude = array( 'script-handle-to-exclude', ); return array_merge( $handles, $exclude ); } );