Files
decap-stream/next.config.ts
T

15 lines
271 B
TypeScript
Raw Normal View History

2026-04-23 23:40:34 -03:00
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
output: "standalone",
async rewrites() {
return [
{
source: "/player/:id.html",
destination: "/api/player-html/:id",
},
]
},
2026-04-23 23:40:34 -03:00
};
export default nextConfig;