Search code examples
javascriptdeploymentvercel

Why won't Vercel run my JavaScript code linked in HTML


I've not had this problem before but now it seems I can't run my JavaScript code on my Vercel deployment. It just doesn't detect it, or so it seems. I can't for the life of my figure it out. https://typing-speed-test-phi.vercel.app/

Any help would be greatly appreciated.


Solution

  • You were using a source file named script.js and then attempting to load a file named script.min.js, which did not exist.

    Looks like you solved your issue in e696b1b6 by using the same name in both places.