e.g:
Lumen: "...solution for building Laravel based micro-services and blazing fast APIs"
Stencil: "Generate small, blazing fast, and 100% standards based Web Components..."
Gatsby: "...a free and open source framework based on React that helps developers build blazing fast websites and apps"
Vue: "...Blazing Fast Virtual DOM"
Lisan: "A blazing fast and super small i18n library..."
If you want a faster application your best bet is to avoid doing slow things as opposed to the magic of any application framework.
On the backend limit service calls, database queries, and asset size as much as possible. Essentially do less and send less to the browser.
On the front end avoid everything that requires parsing a string: querySelectors. That alone can make your application up to 10000x faster.
The slowest parts of any web application are the network connection and large frameworks (both frontend and backend).
I would look for those terms as signals for things that must have performance like data tables, animation frameworks, real time apis (anything real time), and things that dictate your data rendering (state management libraries like redux). These things cannot be slow, so please indicate that you did not make it slow by saying “blazing-fast”!
I once read a quote related to React. Paraphrasing: Speed is an implementation detail, if it wasn't fast we wouldn't do it/use it.