11 lines
218 B
JavaScript
11 lines
218 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
env: {
|
|
NEXT_PUBLIC_API_URL: process.env.NEXT_PUBLIC_API_URL || 'http://localhost:8000',
|
|
},
|
|
}
|
|
|
|
module.exports = nextConfig
|
|
|