link-stack/apps/link/next.config.js
2023-05-25 06:30:36 +00:00

14 lines
262 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
rewrites: async () => ({
fallback: [
{
source: "/:path*",
destination: "/api/proxy/:path*",
},
],
}),
};
module.exports = nextConfig;