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