11 lines
251 B
JavaScript
11 lines
251 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
env: {
|
|
NEXT_PUBLIC_API_URL: process.env.NEXT_PUBLIC_API_URL,
|
|
},
|
|
// si tu as des rewrites ou redirections, vérifie aussi
|
|
};
|
|
|
|
module.exports = nextConfig;
|