Arseniy Klempner 172d2f5f1c
chore: update waku deps, add notes example, add experimental folder
chore: update waku deps to latest
chore: remove relay chats, move all examples to experimental, add notes example
fix: notes example: use nightly waku deps and set pubsub topic in node/enc/dec
2024-04-23 20:16:32 -07:00

15 lines
240 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
output: "export",
async rewrites() {
return [
{
source: "/view/:path*",
destination: "/view",
},
];
},
};
module.exports = nextConfig;