core-edge / next.config.js
dragxd's picture
Initial commit: VoltEdge project
3353b25
raw
history blame contribute delete
460 Bytes
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
output: 'standalone', // Required for Docker deployment
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'api.telegram.org',
},
{
protocol: 'https',
hostname: 'cdn.huggingface.co',
},
],
},
}
module.exports = nextConfig