The final app I'm building will live at /subdirectory on a server.
Setting html5mode to true for angularjs so I lose the # sign works fine. But I also need to set
<base href="/subdirectory/"></base>
During development, I can't have the 'base' element set as when I run grunt serve the server cannot find most of the files.
What is the best way to develop and then maybe set the 'base' element when I do a grunt build ?
Thanks.