tasko/next.config.js

18 lines
304 B
JavaScript
Raw Normal View History

2024-02-15 02:30:10 +00:00
/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
remotePatterns: [
{
protocol: "https",
hostname: "img.clerk.com",
},
{
protocol: "https",
hostname: "images.unsplash.com",
},
],
},
};
module.exports = nextConfig