mirror of
https://github.com/ItzCrazyKns/Perplexica.git
synced 2025-07-10 02:28:29 +00:00
13 lines
242 B
JavaScript
13 lines
242 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
async rewrites() {
|
|
return [
|
|
{
|
|
source: '/api/:path*',
|
|
destination: 'http://localhost:3000/api/:path*',
|
|
},
|
|
]
|
|
}
|
|
}
|
|
|
|
module.exports = nextConfig
|