Hey, I'm trying to import the web3 package in my index.js but when I try to deploy I get the following error:
Error: Script startup exceeded CPU time limit. [code: 10021]
This is the only piece of code in the index.js:
import Web3 from "web3";
export default {
async scheduled(controller, env, ctx) {
// Nothing
},
};
Is the web3 package too big? If so, is there anything I can do to solve this?