next.config.js 289 B

123456789101112
  1. /** @type {import('next').NextConfig} */
  2. const nextConfig = {
  3. output: 'standalone',
  4. images: {
  5. remotePatterns: [
  6. { protocol: 'https', hostname: 'cdn.photoplaces.ru' },
  7. { protocol: 'http', hostname: 'localhost', port: '9000' },
  8. ],
  9. },
  10. }
  11. module.exports = nextConfig