I don’t see the build times in your screenshot but it is normal that the first build takes longer with pnpm in some cases. As for the load times, pnpm vs npm is completely independent of how your app runs.
What happens if you enable npm back in your remix? Does it get fast again? Comparing two separate projects might not be great because there might be caches involved etc.
UPDATE: to be more specific, enabling pnpm on a remix of a project that was using npm is going to be slower, because the remix has to recreate node_modules from scratch. If you remix a project that already has pnpm enabled, 99% of the time the install would be instantaneous.
Again, I am pretty sure the load times are completely unrelated. I can try to reproduce when I get the chance. Can you give me the reproduction protocol?
I’ve run some performance tests from my machine, from AWS and using pingdom: none of them highlights any change in performance between using npm and pnpm. As I said earlier, there can’t be difference in load time between using pnpm and npm, it would be very strange if there were.
Again, I am pretty sure that the difference you noticed is just due to the browser needing to cache additional resources because the URL of the remix is different.