Vue.js instant search – console error – unable to invoke .use on InstantSearch

I’ve followed the guide for installing vue instantsearch (4.3) in my Vue.js (3.0) application.

In my main.js file, I have the following –

import InstantSearch from 'vue-instantsearch/vue3/es'

Vue.use(InstantSearch);

Here’s the exact console error –

Uncaught TypeError: Cannot read properties of undefined (reading 'use')
This is the code that’s provided in the guide so I’m unsure why I’m receiving this error.