| 12345678910111213 |
- /** @type {import('next').NextConfig} */
- const nextConfig = {
- output: 'standalone',
- images: {
- remotePatterns: [
- { protocol: 'https', hostname: 'cdn.photoplaces.ru' },
- { protocol: 'http', hostname: 'localhost', port: '9000' },
- { protocol: 'http', hostname: '192.168.88.128', port: '80' },
- ],
- },
- }
- module.exports = nextConfig
|