douyintest/next.config.mjs

14 lines
249 B
JavaScript
Raw Normal View History

2024-07-10 19:46:08 +08:00
/** @type {import('next').NextConfig} */
2024-07-24 18:46:11 +08:00
const nextConfig = {
async rewrites() {
return [
{
source: "/api/:path*",
destination: "https://testapi.tiefen.fun/api/:path*",
},
];
},
};
2024-07-10 19:46:08 +08:00
export default nextConfig;