nextav/next.config.ts

16 lines
285 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
output: 'standalone',
async rewrites() {
return [
{
source: '/thumbnails/:filename*',
destination: '/api/thumbnails/:filename*',
},
];
},
};
export default nextConfig;