Nextempura

Configuration Overview

Learn how to configure Nextempura to match your needs.

Configuration Files

next.config.mjs

The main Next.js configuration file controls:

  • Build optimization
  • Image optimization
  • Internationalization settings
  • Custom webpack configuration
const nextConfig = {
  // Your configuration here
};

export default nextConfig;

Environment Variables

Create a .env.local file for environment-specific settings:

# Example environment variables
NEXT_PUBLIC_SITE_URL=https://yoursite.com

Customization Options

Theme Configuration

Modify the theme in styles/globals.scss:

  • Color schemes
  • Typography
  • Spacing
  • Breakpoints

Edit configs/navs.ts to customize the main navigation menu.

Advanced Configuration

For advanced customization, refer to: