Files
frontend/next.config.mjs

15 lines
278 B
JavaScript

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