GNXSOFT.COM

This commit is contained in:
Iliyan Angelov
2025-09-26 00:15:37 +03:00
commit fe26b7cca4
16323 changed files with 2011881 additions and 0 deletions

43
gnx-react/next.config.js Normal file
View File

@@ -0,0 +1,43 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
remotePatterns: [
{
protocol: 'http',
hostname: 'localhost',
port: '8000',
pathname: '/media/**',
},
{
protocol: 'https',
hostname: 'localhost',
port: '8000',
pathname: '/media/**',
},
{
protocol: 'http',
hostname: 'localhost',
port: '8080',
pathname: '/images/**',
},
{
protocol: 'https',
hostname: 'localhost',
port: '8080',
pathname: '/images/**',
},
// Add your production domain when ready
// {
// protocol: 'https',
// hostname: 'your-api-domain.com',
// pathname: '/media/**',
// },
],
},
sassOptions: {
includePaths: ['./public/styles', './node_modules'],
quietDeps: true, // Suppress deprecation warnings from dependencies
},
}
module.exports = nextConfig