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-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
},
],
},
};
export default nextConfig;