next.config.js 357 B

12345678910111213
  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. { protocol: 'http', hostname: '192.168.88.128', port: '80' },
  9. ],
  10. },
  11. }
  12. module.exports = nextConfig