mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-28 23:24:13 +00:00
19 lines
366 B
JavaScript
19 lines
366 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
images: {
|
|
domains: ["images.unsplash.com", "avatars.githubusercontent.com"],
|
|
},
|
|
experimental: {
|
|
appDir: true,
|
|
fontLoaders: [
|
|
{
|
|
loader: "@next/font/google",
|
|
options: { subsets: ["latin"] },
|
|
},
|
|
],
|
|
},
|
|
}
|
|
|
|
export default nextConfig
|