My javascript file just isn't working when I point to it in html
this is the html, it points to a javascript file <!DOCTYPE html> <html lang="en"> <head> <title>Fund me app</title> </head> <body> penis <script src="./index.js" type="text.javascript"> </script> <button id="connectButton" onclick="connect()"> Connect </button> </body> </html> this is index.js I’ve pointed the html code to it, but it just doesn’t run async function connect() { if (typeof window.ethereum !==… Read More My javascript file just isn't working when I point to it in html