2023-10-13 08:39:50 -04:00
|
|
|
/** @type {import('next').NextConfig} */
|
2023-10-13 09:23:11 -04:00
|
|
|
const nextConfig = {
|
2023-10-14 12:09:44 -04:00
|
|
|
async rewrites() {
|
|
|
|
return [
|
|
|
|
{
|
|
|
|
source: "/.well-known/nostr.json",
|
|
|
|
destination: "/api/well-known",
|
|
|
|
},
|
|
|
|
];
|
|
|
|
},
|
|
|
|
images: {
|
|
|
|
domains: ["t2.gstatic.com", "www.google.com", "whop.com"],
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = nextConfig;
|