next.config.ts 274 B

123456789101112131415
  1. import type { NextConfig } from "next";
  2. const nextConfig: NextConfig = {
  3. /* config options here */
  4. async rewrites() {
  5. return [
  6. {
  7. source: '/uploads/:path*',
  8. destination: '/api/static/:path*',
  9. },
  10. ];
  11. },
  12. };
  13. export default nextConfig;