11 lines
218 B
TypeScript
11 lines
218 B
TypeScript
import type { NextConfig } from 'next';
|
|
|
|
const nextConfig: NextConfig = {
|
|
port: 3006,
|
|
env: {
|
|
NEXT_PUBLIC_API_URL: process.env.NEXT_PUBLIC_API_URL ?? 'http://localhost:3000',
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|