2024-02-09 19:00:26 -08:00
|
|
|
/** @type {import('next').NextConfig} */
|
2024-02-11 11:16:49 -08:00
|
|
|
const nextConfig = {
|
|
|
|
images: {
|
2024-02-17 14:54:14 -08:00
|
|
|
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
|