mirror of
https://github.com/shadcn-ui/taxonomy
synced 2026-05-24 01:38:28 +00:00
15 lines
352 B
JavaScript
15 lines
352 B
JavaScript
import { withContentlayer } from "next-contentlayer"
|
|
|
|
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
images: {
|
|
domains: ["avatars.githubusercontent.com"],
|
|
},
|
|
experimental: {
|
|
appDir: true,
|
|
serverComponentsExternalPackages: ["@prisma/client"],
|
|
},
|
|
}
|
|
|
|
export default withContentlayer(nextConfig)
|