Postcss-Preset-Env: Endwert hat gemischte Unterstützung und überlegen Sie stattdessen die Verwendung von Flex-End

/* If you're using (S)CSS or SASS, you have to write flex-start or
flex-end instead of start or 
end respectively. */

/* convert */
justify-content: end;  

/* into  */

justify-content: flex-end;
Raviraj Solanki