fakhr-khaleej-blog
Version:
Moving and relocation services blog
19 lines (18 loc) • 645 B
JavaScript
// Environment variables for client-side usage
window.ENV = {
SITE_URL: 'https://fakhrkhaleej.netlify.app',
DOMAIN: 'fakhrkhaleej.netlify.app',
SITE_NAME: 'فخر الخليج',
DEFAULT_LOCALE: 'ar',
NODE_ENV: 'production',
IS_NETLIFY: true,
// List of alternative image paths to try when an image is not found
IMAGE_FALLBACKS: {
// Maps common image formats to try
extensions: ['jpg', 'jpeg', 'png', 'webp'],
// Maps common naming conventions
patterns: ['contact-banner', 'contact_banner', 'contactBanner'],
// Include root directories to search in
directories: ['', 'images/', 'public/images/']
}
};