Can I organize all my stylesheets and scripts into a directive for easier management? I'm considering cleaning up my index file by placing them in separate directives like this:
<head>
<ng-stylesheets></ng-stylesheets>
<ng-scripts></ng-scripts>
</head>
<body>
<p>This is a test</p>
</body>
Is this unnecessary? I find the simplicity of using a directive more appealing than having a large block of stylesheet references. This is for an Angular 1.x project.