fix: corriger la détection d'environnement dans robots.js
This commit is contained in:
+1
-1
@@ -1,5 +1,5 @@
|
||||
export default function robots() {
|
||||
const isProduction = process.env.NEXT_PUBLIC_ENV === 'production';
|
||||
const isProduction = process.env.NODE_ENV === 'production';
|
||||
|
||||
if (!isProduction) {
|
||||
return {
|
||||
|
||||
Reference in New Issue
Block a user