Version 2.0
- Convert to TypeScript
- Breaking change: We now export individual functions instead of putting everything under a default export.
// instead of this...
import Fathom from 'fathom-client'
// do this
import * as Fathom from 'fathom-client'
// or this
import { load, trackPageview } from 'fathom-client'