eexiv/next.config.mjs

17 lines
290 B
JavaScript
Raw Permalink Normal View History

2024-02-09 19:00:26 -08:00
/** @type {import('next').NextConfig} */
2024-02-11 11:16:49 -08:00
const nextConfig = {
images: {
unoptimized: false,
remotePatterns: [
{
protocol: 'https',
hostname: 'upload.wikimedia.org',
port: '',
pathname: '/**',
},
],
2024-02-11 11:16:49 -08:00
},
}
2024-02-09 19:00:26 -08:00
2024-02-11 11:16:49 -08:00
export default nextConfig