mirror of
https://github.com/gromlab-ru/slm-design.git
synced 2026-08-22 07:30:16 +03:00
25 lines
467 B
TypeScript
25 lines
467 B
TypeScript
import { fileURLToPath } from 'node:url'
|
|
import type { NextConfig } from 'next'
|
|
|
|
const nextConfig: NextConfig = {
|
|
turbopack: {
|
|
root: fileURLToPath(new URL('.', import.meta.url))
|
|
},
|
|
images: {
|
|
remotePatterns: [
|
|
{
|
|
protocol: 'https',
|
|
hostname: 'picsum.photos',
|
|
pathname: '/**'
|
|
},
|
|
{
|
|
protocol: 'https',
|
|
hostname: 'i.pravatar.cc',
|
|
pathname: '/**'
|
|
}
|
|
]
|
|
}
|
|
}
|
|
|
|
export default nextConfig
|