aboutsummaryrefslogtreecommitdiff
path: root/next.config.mjs
diff options
context:
space:
mode:
Diffstat (limited to 'next.config.mjs')
-rw-r--r--next.config.mjs11
1 files changed, 11 insertions, 0 deletions
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)