I am trying to add a grunt build file to my angular site :
right now my structure is as follows :
-index.html
-/css
-/images
-/app
-/core
-/services
etc
So my Index.html has links such as
app/core/coreServices.js
This works fine at the moment, but if I bring grunt into the equation which will build my site into a /dist folder, all references to app => dist etc.
Should everything be in the app folder instead including index.html,/css,/images
Hard to see what the best standard out there is with angular and grunt, nearly everyone does it different