Skip to content

Instantly share code, notes, and snippets.

@abhiaiyer91
Last active March 27, 2021 17:26
Show Gist options
  • Save abhiaiyer91/7da0fd390c64a3a6e730a52455ec5ea0 to your computer and use it in GitHub Desktop.
Save abhiaiyer91/7da0fd390c64a3a6e730a52455ec5ea0 to your computer and use it in GitHub Desktop.
export function useMoralis() {
// Moralis Initialization
let Moralis;
if (typeof window !== `undefined`) {
Moralis = require("moralis");
Moralis.initialize(process.env.GATSBY_MORALIS_APPLICATION_ID);
Moralis.serverURL = process.env.GATSBY_MORALIS_SERVER_ID;
}
return { Moralis };
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment