14 lines
286 B
TypeScript
14 lines
286 B
TypeScript
import type { NextConfig } from 'next'
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: 'standalone',
|
|
images: {
|
|
remotePatterns: [
|
|
{ protocol: 'https', hostname: 'rus.hitmotop.com' },
|
|
{ protocol: 'https', hostname: 'hitmotop.com' },
|
|
],
|
|
},
|
|
}
|
|
|
|
export default nextConfig
|