mirror of
https://github.com/rowboatlabs/rowboat.git
synced 2026-04-26 00:46:23 +02:00
- Store conversations and turns for: - playground chat - api - New DDD code organisation with container dependency injection - sdk update - streaming api support
9 lines
174 B
JavaScript
9 lines
174 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
output: 'standalone',
|
|
serverExternalPackages: [
|
|
'awilix',
|
|
],
|
|
};
|
|
|
|
export default nextConfig;
|