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
It works if I change it to const DEBUG = process.env.BROCCOLI_DEBUG;
but I'm not sure what else the BROCCOLI_DEBUG environment variable might be used for.
The text was updated successfully, but these errors were encountered:
Because the DEBUG variable always is set to true it creates a DEBUG folder at the root of the project.
const DEBUG = true || process.env.BROCCOLI_DEBUG;
https://github.com/mike-north/ember-monaco/blob/master/index.js#L17
It works if I change it to
const DEBUG = process.env.BROCCOLI_DEBUG;
but I'm not sure what else the
BROCCOLI_DEBUG
environment variable might be used for.The text was updated successfully, but these errors were encountered: