Anyone know of a good template / example of using ...
# ktor
r
Anyone know of a good template / example of using ktor to serve a (separate) webpack typescript client project? Serving the compiled assets in production and using webpack dev server for development
a
I didn't find any but the general idea is that you can have two projects for frontend and backend. The Ktor server could serve a static content for the frontend as well as providing REST API or you can have a separate frontend server that proxies API requests to the backend.