Files
feedmee/feedmee/next.config.ts
2025-10-16 13:45:55 +02:00

24 lines
432 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
compress: false,
allowedDevOrigins: [
"local-origin.dev",
"*.local-origin.dev",
"172.17.96.1",
"192.168.1.135",
"0.0.0.0",
],
async rewrites() {
return [
{
source: "/api/:path*",
destination: "http://127.0.0.1:7153/api/:path*",
},
];
},
output: "standalone",
};
export default nextConfig;