| import path from 'path'; | |
| /** @type {import('next').NextConfig} */ | |
| const nextConfig = { | |
| output: 'standalone', | |
| images:{ | |
| remotePatterns: [ | |
| { | |
| protocol: 'https', | |
| hostname: 'placehold.in', | |
| port: '', | |
| pathname: '/**', | |
| } | |
| ] | |
| } | |
| }; | |
| export default nextConfig; | |
| import path from 'path'; | |
| /** @type {import('next').NextConfig} */ | |
| const nextConfig = { | |
| output: 'standalone', | |
| images:{ | |
| remotePatterns: [ | |
| { | |
| protocol: 'https', | |
| hostname: 'placehold.in', | |
| port: '', | |
| pathname: '/**', | |
| } | |
| ] | |
| } | |
| }; | |
| export default nextConfig; | |