mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-09-14 23:21:19 +00:00
7 lines
166 B
TypeScript
7 lines
166 B
TypeScript
import type { NextConfig } from 'next';
|
|
|
|
const nextConfig: NextConfig = {
|
|
serverExternalPackages: ['postgres', 'ioredis', 'bullmq'],
|
|
};
|
|
|
|
export default nextConfig;
|