feat(page): add page

This commit is contained in:
2026-02-10 15:30:13 +08:00
parent c32e491748
commit 1444cbc665
34 changed files with 2354 additions and 78 deletions

View File

@@ -1,6 +1,14 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
output: "standalone",
async rewrites() {
return [
{
source: "/api/cms/:path*",
destination: `${process.env.CMS_SERVICE_BASE_URL || "http://localhost:3000"}/api/v1/:path*`,
},
];
},
};
module.exports = nextConfig;