const { join } = require('path'); /** @type {import('next').NextConfig} */ const nextConfig = { reactStrictMode: true, sassOptions: { includePaths: [join(__dirname, 'styles')], }, images: { remotePatterns: [ { protocol: 'https', hostname: 'cdn.theclashfruit.me', port: '', pathname: '/**', }, ], } }; module.exports = nextConfig;