Files
shadcn-ui/examples/playground/next.config.mjs
2023-02-13 21:28:40 +04:00

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