next.config.ts 180 B

123456789
  1. import type { NextConfig } from 'next'
  2. console.log('SOL_ENDPOINT', process.env.SOL_ENDPOINT)
  3. const nextConfig: NextConfig = {
  4. output: 'standalone',
  5. }
  6. export default nextConfig