You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 30, 2020. It is now read-only.
Hey, I tried to send pull request but it seems you don't have it enabled, there is issue with env.js. const isDev is missing .env, it prevents Gulp to add sourcemap to css. Ternary operator is missing === 'production'
Hey, I tried to send pull request but it seems you don't have it enabled, there is issue with env.js. const
isDev
is missing.env
, it prevents Gulp to add sourcemap to css. Ternary operator ismissing === 'production'
- export const NODE_ENV = process.env.NODE_ENV ? "production" : "development";
- export const isDev = process.NODE_ENV === "development";
+ export const NODE_ENV = process.env.NODE_ENV === 'production' ? 'production' : 'development';
+ export const isDev = process.env.NODE_ENV === 'development';
export const isProd = process.env.NODE_ENV === 'production';
The text was updated successfully, but these errors were encountered: