cs210 / Worldsight

Making fast photogrammetry accessible to anyone. Contact: worldsightvr@gmail.com
0 stars 0 forks source link

Set up Server side rendering #50

Closed alarmringing closed 4 years ago

alarmringing commented 4 years ago

client side rendering is the wrong approach to our application. i) cannot access through sub-level routes ii) no SEO iii ) most importantly, this means we cannot link the completed mesh page directly to the user

alarmringing commented 4 years ago

First tried static serving the rendered App page through a node server Then ran into babel issues

alarmringing commented 4 years ago

babel issues regarding module transpiling solved, however ultimately some modules were relying on html web components which means we cannot render them from the server. Need dynamic render for these components but current approach cannot handle that.

Decided to migrate the entire project to NextJS and refactor

alarmringing commented 4 years ago

Migration to NextJS complete.