mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-07-07 22:18:39 +00:00
15 lines
260 B
JavaScript
15 lines
260 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
experimental: {
|
|
fontLoaders: [
|
|
{
|
|
loader: "@next/font/google",
|
|
options: { subsets: ["latin"] },
|
|
},
|
|
],
|
|
},
|
|
}
|
|
|
|
export default nextConfig
|