You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
bundle exec rake assets:precompile RAILS_ENV=production
I get the following error:
ExecJS::ProgramError: RangeError: Maximum call stack size exceeded
(in /myapp/app/assets/javascripts/application.js)
This error is useless. It will be like finding a needle in a haystack. My application.js is simply one line which requires a bunch of other javascript:
//= require_tree .
I need to know which file the infinite recursion occurs at and specifically what line number. Otherwise I can spend 2 months searching for this error. Surely, I am not the only person with this need. What kind I do in this situation?
The text was updated successfully, but these errors were encountered:
When I try to precompile assets for production:
bundle exec rake assets:precompile RAILS_ENV=production
I get the following error:
This error is useless. It will be like finding a needle in a haystack. My application.js is simply one line which requires a bunch of other javascript:
I need to know which file the infinite recursion occurs at and specifically what line number. Otherwise I can spend 2 months searching for this error. Surely, I am not the only person with this need. What kind I do in this situation?
The text was updated successfully, but these errors were encountered: