next.config.ts 172 B

12345678
  1. import type { NextConfig } from 'next'
  2. const nextConfig: NextConfig = {
  3. output: 'standalone',
  4. serverExternalPackages: ['better-sqlite3'],
  5. }
  6. export default nextConfig