hoàn thành chức năng giai đoạn 1

This commit is contained in:
2026-03-31 15:45:46 +07:00
parent 5d5ec7fb1a
commit 5baea90d61
5 changed files with 3429 additions and 12 deletions
+14
View File
@@ -0,0 +1,14 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
output: "standalone",
async rewrites() {
return [
{
source: "/api/:path*",
destination: `${process.env.NEXT_PUBLIC_API_URL ?? "http://localhost:8000"}/api/:path*`,
},
];
},
};
module.exports = nextConfig;