mario_kart_8_website/next.config.js
2023-07-01 22:21:59 +02:00

17 lines
266 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
poweredByHeader: false,
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'pretendo-cdn.b-cdn.net',
port: '',
pathname: '/**',
},
],
}
}
module.exports = nextConfig