| 123456789101112131415 |
- /** @type {import('next').NextConfig} */
- const nextConfig = {
- output: "standalone",
- async rewrites() {
- return [
- {
- source: '/api/:path*',
- destination: `${process.env.NEXT_PUBLIC_API_URL}/api/:path*`,
- },
- ];
- },
-
- };
- module.exports = nextConfig;
|