Thanks for your answer.
In my case, I've tested WebEngine Quick Nano Browser example using Qt 6.4.3. It uses QGuiApplication and QtWebEngineQuick::initialize is called before creating the application instance.
If I move QtWebEngine::initialize() below QGuiApplication, I not only get the same warnings but also an additional message:
QtWebEngineQuick::initialize() called with QCoreApplication object already created and should be called before. This is deprecated and may fail in the future.
I like to take care of warnings whenever possible, as they can indicate potential issues. Is there any official explanation for these specific warnings?