tiefen_space_h5/next.config.js

16 lines
314 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
async rewrites() {
return [
{
source: "/api/:path*",
destination: "https://testapi.tiefen.fun/api/:path*",
},
];
},
transpilePackages: ["crypto-js"],
};
module.exports = nextConfig;