I am developing an app that can utilize sails.js for back-end and AngularJS for Front-end. I thought that I\'ll create an Angular App using Yeoman-angular generator https://
I have got similar use case as yours. I used Yeoman to generate the project structure for angularjs. In this situation, my solution is:
In the routes.js in sails.js project, remove the configuration code for views:
'/': { view: 'homepage' }
Remove all the files under sails.js views and assets folder. But please just make sure you don't need any file in assets folder before you remove everything.
Copy and paste the minified angularjs website to assets folder.
Start sails.js (sails lift) and you can browse your angular website at localhost:1337
Sails.js now also have briefly mentioned this method http://sailsjs.org/documentation/concepts/views