MTMichael Trombainmiketromba.hashnode.dev·Apr 29, 2021 · 1 min readHow to use Web3.js with Nuxt.jsHere's you can use web3.js in Nuxt.js as a plugin: plugins/web3.js import Web3 from 'web3' export default (ctx, inject) => { if(!process.client) return // don't run on serverside inject( // Inject the $web3 instance into the context object i...00