rapid-test/next.config.js

19 lines
331 B
JavaScript

2023-07-28 13:10:10 +02:00
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'tailwindui.com',
},
{
protocol: 'https',
hostname: 'images.unsplash.com',
},
],
},
};
2023-07-28 13:10:10 +02:00
module.exports = nextConfig;