I have a similar problem of using Angular with Grails, pls. refer this question that already gives all the details/solutions/answers: How to integrate angular js into grails 2.3.4?
In the answers to this question, people have given good answers, but they are talking about ....
"require the module on screen"
... & sample code (?) fragments like these:
//= require angular/angular.js
//= require_tree views
//= require_self
What is the meaning of "requiring" the module ("resource bundles": as given in the first answer), & other/above code fragments, or whatever they are.
Does it means normal require statements:
require(['angular']);
etc.?
Things are not very clear.