mirror of
https://github.com/SrIzan10/hctv.git
synced 2026-06-06 00:56:56 +00:00
21 lines
432 B
JavaScript
21 lines
432 B
JavaScript
const LIVE_SERVER_URL = process.env.NODE_ENV === 'production' ? 'https://backend.hctv.srizan.dev' : 'http://localhost:8888'
|
|
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
images: {
|
|
remotePatterns: [
|
|
{
|
|
hostname: 'picsum.photos',
|
|
},
|
|
{
|
|
hostname: 'secure.gravatar.com',
|
|
}
|
|
]
|
|
},
|
|
env: {
|
|
LIVE_SERVER_URL,
|
|
},
|
|
reactStrictMode: false,
|
|
};
|
|
|
|
export default nextConfig;
|