WebsiteMinimal/next.config.js

22 lines
398 B
JavaScript
Raw Normal View History

2023-10-21 16:15:18 +00:00
const { join } = require('path');
2023-10-21 15:51:35 +00:00
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
2023-10-21 16:15:18 +00:00
sassOptions: {
includePaths: [join(__dirname, 'styles')],
},
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'cdn.theclashfruit.me',
port: '',
pathname: '/**',
},
],
}
2023-10-21 15:51:35 +00:00
};
module.exports = nextConfig;