Spaces:
Sleeping
Sleeping
| /** @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; |