diff --git a/next.config.js b/next.config.js index 527feb9..8980268 100644 --- a/next.config.js +++ b/next.config.js @@ -1,7 +1,18 @@ /** @type {import('next').NextConfig} */ const nextConfig = { images: { - domains: ['uploadthing.com', 'lh3.googleusercontent.com'], + remotePatterns: [ + { + protocol: 'https', + hostname: 'uploadthing.com', + pathname: '**', + }, + { + protocol: 'https', + hostname: 'lh3.googleusercontent.com', + pathname: '**', + }, + ], }, }; diff --git a/package.json b/package.json index c5c4092..7b178b3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "react-nextjs-boilerplate", - "version": "2.0.0", + "version": "2.0.1", "private": true, "scripts": { "dev": "next dev",