Files
tabatago/admin-web/next.config.ts
millianlmx 0d72430198
Some checks failed
CI / Detect Changes (push) Has been cancelled
CI / Admin Web CI (push) Has been cancelled
CI / YouTube Worker (push) Has been cancelled
CI / Deploy (push) Has been cancelled
feat(admin-web): enable standalone output for Docker deployment
2026-07-11 23:18:01 +02:00

8 lines
129 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
output: "standalone",
};
export default nextConfig;