WebsiteMinimal/next.config.js

22 lines
398 B
JavaScript

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;