What’s your site’s URL? There are many configurations that “hide” visitors, and we’d need to examine your setup to be able to guess what might be going on.
OK, thanks for that. No misconfiguration in DNS which is a frequent cause of weird numbers in analytics (if you put cloudflare in front of netlify, you end up with a couple hundred unique visitors max, since we count “uniqueness” for visitors via IP addresses).
I think that the disconnect you’re seeing though may still have some notes of that situation:
I think the “sources” graph is for ALL resources, while the “pageviews” graph is just html (judged by “Content-Type” that is sent).
since unique visitors = unique IP’s; in case you have a lot of visitors from things like conferences and networks that share a small number of egress IP’s like some mobile providers, you can have a lot of “visitors” from 1 IP that all have different referrers.
When people are already on your site and navigating between pages it’s not going register a page-view because they aren’t making additional page requests, they are just requesting JS chunks since you are using an SPA (nuxt hydrates in to a vue app on the client). The majority of the time you’ll get a new pageview when someone begins a session.