17 lines
296 B
JavaScript
17 lines
296 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
devIndicators: {
|
|
buildActivity: false,
|
|
},
|
|
async rewrites() {
|
|
return [
|
|
{
|
|
source: '/api/:path*',
|
|
destination: 'http://localhost:3501/api/:path*',
|
|
},
|
|
];
|
|
},
|
|
};
|
|
|
|
module.exports = nextConfig;
|