mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-07-08 06:28:37 +00:00
10 lines
157 B
JavaScript
10 lines
157 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
experimental: {
|
|
appDir: true,
|
|
},
|
|
}
|
|
|
|
export default nextConfig
|