How do I prevent SDL from loading Vulkan when I am using Volk?

I am trying to develop an application with Vulkan, using Volk as a loader and SDL for the window. When using a profiler, I am noticing that SDL_CreateWindow takes over one second, and the culprit seems to be SDL_Vulkan_LoadLibrary. Since Vulkan is already loaded before I create a window, can I somehow skip that step?