Files
frontend/next.config.mjs
2025-12-01 11:05:50 +03:30

19 lines
393 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
basePath: '/v3',
images: {
remotePatterns: [
{
protocol: 'https',
hostname: process.env.HOST,
},
{
protocol: 'https',
hostname: process.env.HOST_RMTO,
},
],
},
};
export default nextConfig;