Perplexica/frontend/next.config.js

13 lines
242 B
JavaScript
Raw Normal View History

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