packages/client/next.config.mjs (14 lines of code) (raw):
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
output: 'export',
rewrites: async () => {
return [
{
source: '/api/:any*',
destination: 'http://localhost:9103/api/:any*',
},
];
},
};
export default nextConfig;