flockstr/next.config.js
2023-10-25 08:22:16 -04:00

22 lines
387 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
async rewrites() {
return [
{
source: "/.well-known/nostr.json",
destination: "/api/well-known/nostr",
},
];
},
images: {
domains: [
"t2.gstatic.com",
"www.google.com",
"whop.com",
"flockstr.s3.amazonaws.com",
],
},
};
module.exports = nextConfig;