tiefen_space_share_web/next.config.js

19 lines
391 B
JavaScript
Raw Normal View History

2024-12-04 14:14:25 +08:00
/** @type {import('next').NextConfig} */
const nextConfig = {
async rewrites() {
return [
{
source: "/api/:path*",
destination: "https://api.tiefen.space/api/:path*",
2024-12-04 14:14:25 +08:00
},
{
source: "/cors/:path*",
destination: "https://file.tiefen.space/:path*",
2024-12-04 14:14:25 +08:00
},
];
},
transpilePackages: ["crypto-js"],
};
module.exports = nextConfig;