Files
aggios.app/front-end-dash.aggios.app/next.config.ts

20 lines
338 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
experimental: {
externalDir: true,
},
async rewrites() {
return {
beforeFiles: [
{
source: "/api/:path*",
destination: "http://backend:8080/api/:path*",
},
],
};
},
};
export default nextConfig;