tasko/next.config.ts

22 lines
363 B
TypeScript
Raw Normal View History

import type { NextConfig } from 'next';
const nextConfig: NextConfig = {
experimental: {
reactCompiler: true,
},
2024-02-14 21:30:10 -05:00
images: {
remotePatterns: [
{
2024-02-15 20:49:19 -05:00
protocol: 'https',
hostname: 'img.clerk.com',
2024-02-14 21:30:10 -05:00
},
{
2024-02-15 20:49:19 -05:00
protocol: 'https',
hostname: 'images.unsplash.com',
2024-02-14 21:30:10 -05:00
},
],
},
};
export default nextConfig;