| 123456789101112131415 |
- import type { NextConfig } from "next";
- const nextConfig: NextConfig = {
- /* config options here */
- async rewrites() {
- return [
- {
- source: '/uploads/:path*',
- destination: '/api/static/:path*',
- },
- ];
- },
- };
- export default nextConfig;
|