15 lines
240 B
JavaScript
Raw Normal View History

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