- 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>
39 lines
823 B
JavaScript
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
|