From f95fc55a1edfe0860c9e5517f7265947afcd6634 Mon Sep 17 00:00:00 2001 From: Thom Ivy Date: Mon, 18 Mar 2024 18:50:24 -0500 Subject: [PATCH] fixed export statement for plausible --- next.config.mjs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/next.config.mjs b/next.config.mjs index 0d54794b..1066a03a 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -1,4 +1,5 @@ import nextra from "nextra"; +import { withPlausibleProxy } from "next-plausible"; /** * @type {import('next').NextConfig} @@ -42,4 +43,4 @@ const withNextra = nextra({ const withPlausible = require("next-plausible").withPlausibleProxy; -export default withPlausible()(withNextra(nextConfig)); +export default withPlausibleProxy()(withNextra(nextConfig));