mirror of
https://github.com/borbann-platform/backend-api.git
synced 2025-12-18 12:14:05 +01:00
23 lines
590 B
TypeScript
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;
|