How to change template from jade to html in angular meanstack project

When I was creating a project using Yo angular fullstack, I was chosen jade - template engin. But I want to change it to html. And I want to change the whole jade file to html file. It is possible and as possible, if possible.

+3


source to share


1 answer


Once you're done building your project through Yeoman, there is no way to automatically switch everything back to html. You will either have to create a new project from scratch with new settings, or edit the current project config files (Grunt, Karma, etc.) to no longer handle .jade files. Of course, you will have to convert all Jade templates to HTML.



Personally, I would like to create a new project with the selected HTML and then copy and paste any files from my old project that I needed to save in the new project.

+1


source







All Articles