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