8 lines
170 B
JavaScript
8 lines
170 B
JavaScript
const nextConfig = {
|
|
output: 'export',
|
|
env: {
|
|
NEXT_PUBLIC_API_URL: process.env.NEXT_PUBLIC_API_URL || 'http://localhost:3001',
|
|
},
|
|
};
|
|
|
|
export default nextConfig; |