next.config.ts 184 B

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