24 lines
583 B
TypeScript
Executable File
24 lines
583 B
TypeScript
Executable File
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: 'standalone',
|
|
// Ensure we can connect to the backend in Docker
|
|
async rewrites() {
|
|
return [
|
|
{
|
|
source: '/api/:path*',
|
|
destination: 'http://backend:8000/:path*',
|
|
},
|
|
];
|
|
},
|
|
// ESLint configuration
|
|
eslint: {
|
|
ignoreDuringBuilds: false,
|
|
dirs: ['src'],
|
|
},
|
|
// Production optimizations
|
|
reactStrictMode: true,
|
|
// Note: swcMinify is default in Next.js 15
|
|
};
|
|
|
|
export default nextConfig; |