Patricius
Explore posts from serversNuxt2 uses outdated TypeScript version
I am working to migrate a mono-repo.
1.) My root has a package.json and tsconfig that uses TypeScript 5.5.4 (latest version).
2.) I have a packages directory with directories that host small TS based packages. They all build with TS 5.5.4, types and only modules support (no CJS support). These packages are built using unbuild.
3.) I have a app directory, it has its own package.json and tsconfig, thats where my Nuxt2 app is located.
4.) On build and run my Nuxt2 app throws errors which I can only link to an outdated TypeScript version. <4.5 to be precise.
This is the error:
What I already tried
- Forcing 5.5.4 TS version in app directory through resolutions. This produces countless of other errors and does not fix this either.
1 replies
Dockerized .NET8 API not accessible.
When I try curl I get "(56) Recv Failure. Connection refused by peer."
Docker compose
Dockerfile
What I already tried:
- Running it outside Docker, it works.
- Running curl commands inside Docker, they work.
- Made sure that my app listens to port 8080.
- Changing port from 5282 to 8080. Port 5282 now gets failure 7, 8080 now gets error 56 similarly to what 5282 was getting. "Recv failure. Connection refused by peer."
- Researched online, from what I understand this issue is .NET8 specific and has to do with "Kestrel" not allowing traffic from outside of local device.
I am just using the weatherforecast template, so I have not written any code yet. I am on MacOS Sonoma 14.5 if that helps.
28 replies