taxonomy/next.config.mjs

16 lines
352 B
JavaScript
Raw Permalink Normal View History

import { withContentlayer } from "next-contentlayer"
2022-10-26 13:18:06 +00:00
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
images: {
domains: ["avatars.githubusercontent.com"],
},
experimental: {
appDir: true,
serverComponentsExternalPackages: ["@prisma/client"],
2022-10-26 13:18:06 +00:00
},
}
export default withContentlayer(nextConfig)