/** @type {import('next').NextConfig} */ const nextConfig = { reactStrictMode: true, images: { domains: ['localhost'], }, webpack: (config) => { config.module.rules.push({ test: /\.(woff|woff2|eot|ttf|otf)$/, use: { loader: 'file-loader', options: { name: '[name].[ext]', publicPath: '/_next/static/fonts/', outputPath: 'static/fonts/', }, }, }); return config; }, }; export default nextConfig;