2026-03-12 11:24:10 +08:00
|
|
|
/** @type {import('next').NextConfig} */
|
|
|
|
|
const nextConfig = {
|
2026-05-18 15:16:46 +08:00
|
|
|
devIndicators: {
|
|
|
|
|
buildActivity: false,
|
|
|
|
|
},
|
2026-03-12 11:24:10 +08:00
|
|
|
async rewrites() {
|
|
|
|
|
return [
|
|
|
|
|
{
|
|
|
|
|
source: '/api/:path*',
|
|
|
|
|
destination: 'http://localhost:3501/api/:path*',
|
|
|
|
|
},
|
|
|
|
|
];
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
module.exports = nextConfig;
|