Add persistent onion key backup and restore, improve startup resilience, and flesh out the major site verticals with richer navigation, search coverage, and operator documentation. Made-with: Cursor
14 lines
383 B
TypeScript
14 lines
383 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
images: {
|
|
remotePatterns: [
|
|
{ protocol: "https", hostname: "picsum.photos", pathname: "/**" },
|
|
{ protocol: "https", hostname: "fastly.picsum.photos", pathname: "/**" },
|
|
{ protocol: "https", hostname: "images.unsplash.com", pathname: "/**" },
|
|
],
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|