next.config.ts 189 B

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