backend-api/frontend/next.config.ts

23 lines
590 B
TypeScript

import type { NextConfig } from "next";
/** @type {import('next').NextConfig} */
const nextConfig: NextConfig = {
reactStrictMode: true, // Recommended for development
// Add other Next.js configurations here as needed
// Example: environment variables accessible on the client-side
// env: {
// NEXT_PUBLIC_API_URL: process.env.NEXT_PUBLIC_API_URL,
// },
// Example: image optimization domains
// images: {
// remotePatterns: [
// {
// protocol: 'https',
// hostname: 'example.com',
// },
// ],
// },
};
export default nextConfig;