You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
since the frontend is completely static, we should generate a separately hostable web app when building
Purpose
currently the web client app server and the api server runs together, however, if the frontend web client is generated separately, it can be hosted on free static hosting platforms such as pages.dev and only the api server is hosted on your server. doing so can reduce the cost of server bandwidth
Do you want to implement this feature yourself?
Yes, I will implement this by myself and send a pull request
The text was updated successfully, but these errors were encountered:
In fact, it is not completely static: depending on entities such as notes and users, the HTML itself sometimes contains tags like link that are referenced in lookups from other instances.
Also, if the same path is used, depending on the contents of the accept header, it may return HTML for the application or activity json, so it is not as easy as it sounds to extract the client app and serve from different location
like kakkokari said it isn't completely static due to various entities though another reason is simply the use of Vue as soon as stuff like Vue, Next.js and etc comes into play making something static is completely thrown out of the window as all those framework render a lot of stuff via JS live in the HTML constantly modifying it.
There are reasons why there are special frameworks for static sites like handlebars.js and etc as those compile the stuff on build directly into the site/js.
Summary
since the frontend is completely static, we should generate a separately hostable web app when building
Purpose
currently the web client app server and the api server runs together, however, if the frontend web client is generated separately, it can be hosted on free static hosting platforms such as pages.dev and only the api server is hosted on your server. doing so can reduce the cost of server bandwidth
Do you want to implement this feature yourself?
The text was updated successfully, but these errors were encountered: