mirror of
https://github.com/arkorty/Reduce.git
synced 2026-03-17 16:41:42 +00:00
15 lines
249 B
JavaScript
15 lines
249 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
async redirects() {
|
|
return [
|
|
{
|
|
source: "/:id",
|
|
destination: `/api/redirect/:id`,
|
|
permanent: false,
|
|
},
|
|
];
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|