To start the express server which serves the TSS app at /hub
npm i && npm run buildcd ./server && npm i && npm run start
Works as expected
assets are not served correctly from subpath. Can be observed as favicon is not loaded when TSS is served with the express app
| Component | Path |
|---|---|
| express | /hub |
| app.config.ts | / |
| router.tsx | / |
| Result | Does not work, navigation inside TSR always goes back to / |
| Component | Path |
|---|---|
| express | /hub |
| app.config.ts | /hub |
| router.tsx | / |
| Result | Does not work, navigation inside TSR always goes back to / |
| Component | Path |
|---|---|
| express | /hub |
| app.config.ts | /hub |
| router.tsx | /hub |
| Result | TSR navigation now works. chunks are still loaded from http://localhost:3001/\_build/assets/client-DkXsmdUL.js |