Guy Ross
Guy Ross
when bundle fails for a component during the dev command, it should not exist the program. this error should be raised to the web error reporter.
socket should poll when the connection is lost, waiting for a reconnect.
This should not raise an exception, it should only respond with "error: unknow flag"...
When creating a new page during the runtime of the dev command, an error is thrown "component not exported". This should be avoided during the initial creation of the page,...
Implement ISR Something like the following should be implemented. ```go // ... func main() { // ... req.RenderPageWithConfig(orbit.StaticPage, props, &orbit.Config{revalidate: time.Second * 10}) } ```
General improvements to the SSG deploy command, include the following. - [ ] apply the hydrate package to the static site generation.
``` orbit.RenderPage(SomePage, map[string]interface{}) ``` should be able to take in a specific client rendering strategy
Ability to load env variables for both server-side and static generation. ENV vars should also have the ability to be applied during the application runtime to switch out the envs...