Files
shadow-gunbuilder-ai-proto/next.config.mjs
T

17 lines
285 B
JavaScript

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