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-08-18 11:30:28 -05:00

19 lines
376 B
JavaScript

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