I have done an Angular 2 application (and nothing fancy, might as well have just done a plain HTML/CSS/JS version of it).
Now that I want to do SEO I would much rather prefer converting my app to static HTML instead of going the Angular 2 Universal way.
I do not want to do any server side implementation of this, it would not suit my deployment environment at all. I just want straight *.html, *.sass/css (sass files I will obviously convert to CSS first), *.js files as the output which can be statically served on the web server.
What tool/utility can be used to help with this conversion? Would even be better if I can take my Angular 2 code through some webpack plugin that can spew out the static HTML version out on the other side.
Are there any such tools available at the moment?