mirror of
https://github.com/snowykami/neo-blog.git
synced 2025-09-04 00:06:22 +00:00
33 lines
750 B
TypeScript
33 lines
750 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: "standalone",
|
|
images: {
|
|
remotePatterns: [
|
|
{
|
|
protocol: 'https',
|
|
hostname: 'www.gravatar.com',
|
|
port: '',
|
|
pathname: '/avatar/**',
|
|
},
|
|
{
|
|
protocol: 'https',
|
|
hostname: 'cdn.liteyuki.org',
|
|
port: '',
|
|
pathname: '/**',
|
|
},
|
|
],
|
|
},
|
|
async rewrites() {
|
|
const backendUrl = (process.env.NEXT_PUBLIC_API_BASE_URL || "http://neo-blog-backend:8888")
|
|
console.log("Using development API base URL:", backendUrl);
|
|
return [
|
|
{
|
|
source: '/api/:path*',
|
|
destination: backendUrl + '/api/:path*',
|
|
},
|
|
]
|
|
}
|
|
};
|
|
export default nextConfig;
|