anycoder-82c661ce / next.config.js
durukan's picture
Upload next.config.js with huggingface_hub
4b9f7db verified
raw
history blame contribute delete
511 Bytes
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
swcMinify: true,
images: {
domains: ['i.imgur.com', 'via.placeholder.com'],
},
async headers() {
return [
{
source: '/(.*)',
headers: [
{
key: 'X-Content-Type-Options',
value: 'nosniff',
},
{
key: 'X-Frame-Options',
value: 'DENY',
},
],
},
];
},
};
module.exports = nextConfig;