14 lines
220 B
JavaScript
Raw Normal View History

2023-11-14 22:22:00 +03:00
/** @type {import('next').NextConfig} */
const nextConfig = {
async rewrites() {
return [
{
source: "/view/:path*",
destination: "/view",
},
];
},
};
2023-11-14 22:22:00 +03:00
module.exports = nextConfig;