anycoder-ed280f1c / next.config.js
samirerty's picture
Upload next.config.js with huggingface_hub
6c98911 verified
raw
history blame contribute delete
368 Bytes
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
swcMinify: true,
// تنظیمات برای استقرار بهتر در HuggingFace Spaces
output: 'standalone',
// اجازه بارگذاری فونت‌ها و تصاویر
images: {
domains: ['localhost'],
unoptimized: true
}
}
module.exports = nextConfig