mirror of
https://github.com/ahmadk953/tasko.git
synced 2025-01-31 00:53:37 +00:00
18 lines
304 B
JavaScript
18 lines
304 B
JavaScript
|
/** @type {import('next').NextConfig} */
|
||
|
const nextConfig = {
|
||
|
images: {
|
||
|
remotePatterns: [
|
||
|
{
|
||
|
protocol: "https",
|
||
|
hostname: "img.clerk.com",
|
||
|
},
|
||
|
{
|
||
|
protocol: "https",
|
||
|
hostname: "images.unsplash.com",
|
||
|
},
|
||
|
],
|
||
|
},
|
||
|
};
|
||
|
|
||
|
module.exports = nextConfig
|