Files
ophion/dashboard/next.config.js
2026-02-06 14:26:15 -03:00

16 lines
335 B
JavaScript

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