9 lines
181 B
TypeScript
9 lines
181 B
TypeScript
import type { NextConfig } from 'next'
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: 'standalone',
|
|
serverExternalPackages: ['better-sqlite3', 'sharp'],
|
|
}
|
|
|
|
export default nextConfig
|