waku-lab/examples/flush-notes/next.config.js

15 lines
240 B
JavaScript

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