From bad71868fbc005d7a10cb60e59454bf143bfe84b Mon Sep 17 00:00:00 2001 From: Colby Fayock Date: Fri, 12 Apr 2024 14:40:41 -0300 Subject: [PATCH] Step 3: Proxying analytics requests --- next.config.mjs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/next.config.mjs b/next.config.mjs index 4678774..43ae7b5 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -1,4 +1,6 @@ +import { withPlausibleProxy } from 'next-plausible'; + /** @type {import('next').NextConfig} */ const nextConfig = {}; -export default nextConfig; +export default withPlausibleProxy()(nextConfig); \ No newline at end of file