Files
slm-design/examples/demo-frontend/next.config.ts
2026-08-01 09:31:08 +03:00

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