tasko/next.config.js

21 lines
353 B
JavaScript
Raw Normal View History

2024-02-14 21:30:10 -05:00
/** @type {import('next').NextConfig} */
const 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
},
],
},
};
2024-02-15 20:49:19 -05:00
module.exports = nextConfig;