Feat : Api integrate on login screen, set login password and set transaction password screen

This commit is contained in:
2025-07-09 16:00:24 +05:30
parent 4b3e89673b
commit 09d61e556c
9 changed files with 437 additions and 637 deletions

View File

@@ -3,7 +3,16 @@ const nextConfig = {
experimental: {
serverComponentsExternalPackages: ["typeorm", "knex"],
},
reactStrictMode: true
reactStrictMode: true,
// For port transfer
async rewrites() {
return[
{
source:'/api/:path*',
destination: 'http://localhost:8080/api/:path*',
},
];
},
};
export default nextConfig;