0

My app worked great so far, I've been working on few updates and then I uploaded my new generated dist folder to my website.

Suddenly I get this error: main.5b5a7be….bundle.js:31 Uncaught SyntaxError: missing ) after argument list

Now different error appeared:

main.8d6ae5a….bundle.js:42 Uncaught TypeError: i.QueueScheduler is not a constructor

What's wrong? How I can detect where this error comes from?

TheUnreal
  • 23,434
  • 46
  • 157
  • 277

1 Answers1

0

Error "SyntaxError: missing ) after argument list" itself explained that you have missed ending closing brackets ) for your QueueScheduler constructor or for other function after setting arguments.

ranakrunal9
  • 13,320
  • 3
  • 42
  • 43