Files
tonePage/apps/frontend/next.config.ts
2025-12-12 17:25:26 +08:00

23 lines
459 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
reactStrictMode: true,
devIndicators: {
position: 'bottom-right',
},
async rewrites() {
return [
{
source: '/api/:path*',
destination: 'http://localhost:3001/:path*',
}
]
},
images: {
remotePatterns: [new URL('https://tone-personal.oss-cn-chengdu.aliyuncs.com/**')]
}
};
export default nextConfig;