17 lines
339 B
JavaScript
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;
|
|
|