Next.js pass NODE_ENV to client Next.js pass NODE_ENV to client node.js node.js

Next.js pass NODE_ENV to client


1. You can include it in webpack configuration (using dotenv-webpack dependency):

require('dotenv').config()const path = require('path')const Dotenv = require('dotenv-webpack')module.exports = {  webpack: (config) => {    config.plugins = config.plugins || []    config.plugins = [      ...config.plugins,      // Read the .env file      new Dotenv({        path: path.join(__dirname, '.env'),        systemvars: true      })    ]    return config  }}