Files
frontend/next.config.mjs
AmirHossein Mahmoodi 87e3281f60 Feature/change any file
2025-01-21 12:20:38 +00:00

15 lines
280 B
JavaScript

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