antwarjs / antwar

A static site generator built with React and Webpack.
https://antwar.js.org/
MIT License
460 stars 35 forks source link

pre-rendering #86

Closed iamstarkov closed 9 years ago

iamstarkov commented 9 years ago

will antwar support pre-rendering the whole site?

bebraw commented 9 years ago

That's what we do now. It renders the whole site through react-router and you get static output. This is enough for simple sites without functionality relying on JavaScript. We're still missing proper JS support. Ideally you should be able to write bits you need in React while getting static output as well. There are plans but no implementation yet.

iamstarkov commented 9 years ago

thank you