10 lines
198 B
JavaScript
10 lines
198 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
env: {
|
|
NEXT_PUBLIC_BACKEND_URL: process.env.NEXT_PUBLIC_BACKEND_URL,
|
|
},
|
|
}
|
|
|
|
module.exports = nextConfig
|