Abe Estrada

I like AWS Amplify, but the size of the build was too big, TIL that they have modular imports, and I was able to reduce the size 2MB, while I wait for AWS SDK v3

Before:

import { Auth } from "aws-amplify";

After (better):

import Auth from "@aws-amplify/auth";