mirror of
https://github.com/shadcn-ui/taxonomy
synced 2026-05-23 09:18:30 +00:00
13 lines
282 B
JavaScript
13 lines
282 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
images: {
|
|
domains: ["avatars.githubusercontent.com"],
|
|
},
|
|
experimental: {
|
|
appDir: true,
|
|
serverComponentsExternalPackages: ["@prisma/client"],
|
|
},
|
|
}
|
|
|
|
module.exports = nextConfig
|