Files
clio/frontend/next.config.js
2026-02-10 23:05:41 +00:00

15 lines
270 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'standalone',
async rewrites() {
return [
{
source: '/api/:path*',
destination: 'http://127.0.0.1:8096/api/:path*',
},
];
},
};
module.exports = nextConfig;