javascript - How to use multiple directory for angular js templates? Using grails angular template asset pipeline plugin -
we want have project structure this:
assets/javascripts/ - featurea/ - templatea.html - controllera.js - featureb/ - templateb.html - controllerb.js
but angular template asset pipeline plugin accepts 1 directory/folder on config templates.
grails { assets { angular { templatefolder = 'templates' modulenamebase = 'app' compresshtml = true preservehtmlcomments = false includepathinname = false } } }
is there anyway plugin able scan nested folders under given template folder?
Comments
Post a Comment