tasko/next.config.js

21 lines
353 B
JavaScript
Raw Normal View History

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