13 lines
212 B
JavaScript
13 lines
212 B
JavaScript
/**
|
|
* @type {import('next').NextConfig}
|
|
*/
|
|
|
|
const nextConfig = {
|
|
env: {
|
|
DEV_API: 'http://localhost:7272',
|
|
PRODUCTION_API: 'https://api-dev-minimal-v700.pages.dev',
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|