RedS
RedS
Explore posts from servers
TtRPC
Created by RedS on 11/15/2023 in #❓-help
TRPCClientError: fetch failed, using Node 18 in Docker
I have both my app and my tRPC server running in Docker via the following docker-compose config: ("navis" is the tRPC server, "retro" is the app)
version: "3.9"
services:
retro:
image: ghcr.io/***/retro:latest
ports:
- "${PORT}:${PORT}"
env_file:
- .env
restart: unless-stopped
depends_on:
- navis
volumes:
- "./config:/app//apps/retro/config"
navis:
image: ghcr.io/***/navis:latest
env_file:
- .env
restart: unless-stopped

networks:
default:
external: true
name: internal-network
version: "3.9"
services:
retro:
image: ghcr.io/***/retro:latest
ports:
- "${PORT}:${PORT}"
env_file:
- .env
restart: unless-stopped
depends_on:
- navis
volumes:
- "./config:/app//apps/retro/config"
navis:
image: ghcr.io/***/navis:latest
env_file:
- .env
restart: unless-stopped

networks:
default:
external: true
name: internal-network
My tRPC client config:
export const MailerService = createTRPCProxyClient<AppRouter>({
links: [
httpBatchLink({
url: ["navis", "3030"].join(":"),
}),
],
});
export const MailerService = createTRPCProxyClient<AppRouter>({
links: [
httpBatchLink({
url: ["navis", "3030"].join(":"),
}),
],
});
I'm getting this error when trying to send a request to my tRPC server: https://i.imgur.com/bGqxxEu.png I tried a lot of stuff, I don't have any idea why is it happening.
4 replies
SIASapphire - Imagine a framework
Created by RedS on 7/31/2023 in #sapphire-support
Shapeshift: Type instantiation is excessively deep and possibly infinite
No description
64 replies