Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Sprockets::CircularDependencyError application.js has already been required

In my application, I receive a Sprockets::CircularDependencyError application.js has already been required. This affects every page in my application because none of the JS loads. Note - this error occurred after a fairly complex merge.

My assumption (please correct me if I'm wrong) is that this error occurs because two different files require application.js. If so, in which files should I look to debug this error? How could I test my application to determine what files are already requiring application.js?

Thank you very much for any help. I'd be more than happy to supply any pertinent information.

like image 367
wir963 Avatar asked Jul 05 '12 19:07

wir963


1 Answers

"this error occurred after a fairly complex merge. "

I'm sure the conflict would surely be in the application.js file too.. After the merge you might not have removed the extra application.js.* file your version control creates for you, where both of them would be having line of require tree or something.. i.e. both requiring each other thus circular dependency. Make sure there is no such extra file in that folder...

like image 118
Rahul garg Avatar answered Nov 11 '22 11:11

Rahul garg