Its been a while

This commit is contained in:
Jason Jordan
2026-07-23 10:38:20 -04:00
parent 77f294c972
commit 8b3bb209b3
50 changed files with 4147 additions and 1452 deletions
+13 -1
View File
@@ -1,7 +1,19 @@
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
// async rewrites() {
// return [
// {
// source: '/api-backend/:path*',
// destination: `http://web_api:3005`, // The external api URL
// },
// ];
// },
outputFileTracingIncludes: {
'/api/**/*': ['./node_modules/jose/**/*'],
},
allowedDevOrigins: [`${process.env.BE_API_SERVER_HOST}:${process.env.BE_API_SERVER_PORT}`]
};
export default nextConfig;