Files
caszl-next/next.config.js
quantulr a8b1ad286d update
2023-11-06 17:27:50 +08:00

17 lines
348 B
JavaScript

/** @type {import("next").NextConfig} */
const nextConfig = {
async rewrites() {
return [
{
source: "/api/:path*",
destination: "http://localhost:8084/api/:path*"
}, {
source: "/admin-api/:path*",
destination: "http://localhost:8082/api/:path*"
},
];
}
};
module.exports = nextConfig;