Files
AutonetSellCar/frontend/next.config.js
AutonetSellCar Deploy 1f0dcb1ddb Initial commit: AutonetSellCar platform with deployment system
- Frontend: Next.js 14 with TypeScript
- Backend: FastAPI with SQLAlchemy
- Agent: Carmodoo sync agent
- Deployment: Docker Compose based staging/production setup
- Scripts: Automated deployment with rollback support

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-30 13:24:39 +09:00

39 lines
823 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'standalone',
images: {
remotePatterns: [
{
protocol: 'http',
hostname: 'dealer.carmodoo.com',
pathname: '/data/**',
},
{
protocol: 'https',
hostname: 'dealer.carmodoo.com',
pathname: '/data/**',
},
{
protocol: 'https',
hostname: 'images.unsplash.com',
pathname: '/**',
},
{
protocol: 'http',
hostname: 'localhost',
pathname: '/uploads/**',
},
{
protocol: 'http',
hostname: '192.168.0.202',
pathname: '/uploads/**',
},
],
},
env: {
NEXT_PUBLIC_API_URL: process.env.NEXT_PUBLIC_API_URL || 'http://192.168.0.202:8000',
},
}
module.exports = nextConfig