Perplexica/frontend/next.config.js
2025-01-06 21:25:03 -07:00

13 lines
No EOL
242 B
JavaScript

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