I am trying to use the Patreon module, I already installed it from npm, then I just import it like normal, but when I tried to use it it give me "Uncaught ReferenceError: process is not defined" on the console.
import { patreon as patreonAPI , oauth as patreonOAuth } from 'patreon'
function App() {
const patreonApiClient = patreonAPI(import.meta.env.VITE_ACCESS_TOKEN);
console.log(patreonApiClient)
return (
<h1>Test</h1>
)
}
export default App