Files
hctv/next.config.mjs
SrIzan10 9837cbb713 feat/nginx-rtmp-move (#33)
* feat: initial and probably final rtmp server backend

* feat: video player and next-ws

* chore: cleanup livekit api routes

* feat: chat

* feat: move to nginx flv

* feat: no viewer streaminfo implementation
2025-03-15 16:58:14 +01:00

19 lines
382 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
remotePatterns: [
{
hostname: 'picsum.photos',
},
{
hostname: 'secure.gravatar.com',
}
]
},
env: {
LIVE_SERVER_URL: process.env.NODE_ENV === 'production' ? 'https://backend.hctv.srizan.dev' : 'http://localhost:8888',
}
};
export default nextConfig;