Files
ck_qr_nextjs_node_redis_pos…/client/next.config.ts
T

17 lines
281 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
output: 'standalone',
async redirects() {
return [
{
source: '/l/:slug',
destination: '/api/l/:slug',
permanent: false
}
];
}
};
export default nextConfig;