flockstr/next.config.js
2023-10-13 09:23:11 -04:00

17 lines
339 B
JavaScript

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