This repository has been archived on 2026-09-03. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
confessions-of-grace/next.config.js
T
2025-06-13 17:54:41 -05:00

16 lines
304 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
images: {
remotePatterns: [
{
protocol: 'https',
hostname: '**',
port: '',
pathname: '/images/**',
},
],
},
};
module.exports = nextConfig