16 lines
258 B
JavaScript
16 lines
258 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
experimental: {
|
|
fontLoaders: [
|
|
{
|
|
loader: "@next/font/google",
|
|
options: {
|
|
subsets: ["latin"],
|
|
},
|
|
},
|
|
],
|
|
},
|
|
};
|
|
|
|
module.exports = nextConfig;
|