2026-02-06 09:01:35 +07:00
|
|
|
import type { NextConfig } from "next";
|
|
|
|
|
|
|
|
|
|
const nextConfig: NextConfig = {
|
2026-02-08 10:33:24 +07:00
|
|
|
// Enable standalone output for Docker
|
|
|
|
|
output: 'standalone',
|
|
|
|
|
|
|
|
|
|
// Disable static optimization for dynamic data
|
|
|
|
|
experimental: {
|
|
|
|
|
// Enable if needed for better performance
|
|
|
|
|
}
|
2026-02-06 09:01:35 +07:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default nextConfig;
|