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