Files
group-2-threaded-project-pe…/web/next.config.mjs
2026-03-25 08:19:44 -06:00

15 lines
267 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactCompiler: true,
async rewrites() {
return [
{
source: "/api/:path*",
destination: "http://localhost:8080/api/:path*",
},
];
},
};
export default nextConfig;