TArray<FVector> replication

Hello, I need to replicate the array of vectors TArray<FVector_NetQuantize> but I often get the stack overflow error (or others). How to do it properly? I tried to do serialization but nothing happened, there is very little information about this on the Internet. Thank you in advance.

Would it not be easier to replicate a TArray instead? from the docs, it appears that FVector_NetQUantize is “historical format for vector net serialization”.

Unless of course there is some reason why you need to use this specific type.