next.js/test/integration/non-standard-node-env-warning/pages/index.js
index.js8 lines166 B
export default function Page() {
  if (process.env.NODE_ENV === 'production') {
    return <h1>Hello Production</h1>
  } else {
    return <h1>Hello Other</h1>
  }
}
Quest for Codev2.0.0
/
SIGN IN