Files
metabuilder/packages/geocities-app/next.config.js
2026-01-21 22:00:00 +00:00

15 lines
282 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
// Allow loading images from archive.org for classic gifs
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'web.archive.org',
},
],
},
};
module.exports = nextConfig;