Files
zeekerWatchmen/web/next.config.js
T
2026-05-25 15:09:42 +08:00

16 lines
272 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
async rewrites() {
return [
{
source: '/api/:path*',
destination: 'http://localhost:8765/api/:path*',
},
];
},
};
module.exports = nextConfig;