Some background
We have a singe nodejs express server serving multiple angular apps (using angular workspace and angular universal) Each angular app is served via a specific route using SSR (universal) and shared components and resources (workspace)
We are looking into the option of moving to svelte (sapper/svelte kit)
I haven't found any docs on how to create a workspace for multiple svelte apps in order to share components, css and more between separate apps
Edit: Of course this can be done manually rather simply as suggested in the comments and since svelte is not a framerwork (like angular) maybe the intention is not to create a 'svelte' way of doing this.
- Serve the relevant sapper app from an existing fully fledged nodejs express app.
Is it possible? If so, can somebody point me in the right direction?
Thanks