mirror of
https://github.com/pacnpal/thrilltrack-explorer.git
synced 2025-12-20 09:31:13 -05:00
26 lines
522 B
JavaScript
26 lines
522 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
// Image optimization for CloudFlare
|
|
images: {
|
|
remotePatterns: [
|
|
{
|
|
protocol: 'https',
|
|
hostname: 'imagedelivery.net',
|
|
},
|
|
{
|
|
protocol: 'https',
|
|
hostname: 'cdn.thrillwiki.com',
|
|
pathname: '/images/**',
|
|
},
|
|
],
|
|
formats: ['image/avif', 'image/webp'],
|
|
},
|
|
|
|
// Production optimizations
|
|
compress: true,
|
|
poweredByHeader: false,
|
|
reactStrictMode: true,
|
|
};
|
|
|
|
export default nextConfig;
|