ai-search/next.config.mjs
2024-02-03 00:49:45 +08:00

17 lines
265 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'export',
async rewrites() {
return {
fallback: [
{
source: '/v1/:path*',
destination: `http://localhost:8080/v1/:path*`,
},
],
}
},
};
export default nextConfig;