Files
formbricks-formbricks/apps/demo/next.config.mjs
2024-10-08 12:40:58 +00:00

18 lines
304 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
remotePatterns: [
{
protocol: "https",
hostname: "tailwindui.com",
},
{
protocol: "https",
hostname: "images.unsplash.com",
},
],
},
};
export default nextConfig;