blob: 6b4192a31fcd08dd9f72d0e862ed21ec5de62afa (
plain)
1
2
3
4
5
6
7
8
9
10
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)
|