9 lines
192 B
JavaScript
9 lines
192 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
env: {
|
|
NEXT_PUBLIC_API_URL: process.env.NEXT_PUBLIC_API_URL || 'http://localhost:3002',
|
|
},
|
|
}
|
|
|
|
module.exports = nextConfig
|