From d82fb3b552d20a279efdd9408042183cfa02fb48 Mon Sep 17 00:00:00 2001 From: schererleander Date: Thu, 25 Dec 2025 23:33:25 +0000 Subject: initial commit --- next.config.mjs | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 next.config.mjs (limited to 'next.config.mjs') diff --git a/next.config.mjs b/next.config.mjs new file mode 100644 index 0000000..6b4192a --- /dev/null +++ b/next.config.mjs @@ -0,0 +1,11 @@ + +import { withContentlayer } from 'next-contentlayer2' + +/** @type {import('next').NextConfig} */ +const nextConfig = { + reactStrictMode: true, + transpilePackages: ['react-map-gl', 'maplibre-gl'], + output: 'standalone', +} + +export default withContentlayer(nextConfig) -- cgit v1.3.1