9 lines
166 B
TypeScript
9 lines
166 B
TypeScript
|
|
import type { NextConfig } from 'next'
|
||
|
|
|
||
|
|
const nextConfig: NextConfig = {
|
||
|
|
output: 'standalone',
|
||
|
|
serverExternalPackages: ['postgres'],
|
||
|
|
}
|
||
|
|
|
||
|
|
export default nextConfig
|