Files
shadcn-ui/templates/next-template/next.config.mjs
2023-01-24 19:51:29 +04:00

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