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
This code is invoked before process.env.EMBER_ENV has been set, so environment-specific configuration does not work properly.
To reproduce:
ember new my-project
cd my-project
ember install ember-cli-coffeescript
echo 'module.exports = function(environment) {console.log("environment is", environment);};' >config/environment.js
ember build
Prints out:
environment is undefined
version: 1.13.12
Buildingenvironment is development
...
The very first environment is undefined is due to ember-cli-coffeescript.
This code is invoked before
process.env.EMBER_ENV
has been set, so environment-specific configuration does not work properly.To reproduce:
Prints out:
The very first
environment is undefined
is due toember-cli-coffeescript
.May be related to #61.
The text was updated successfully, but these errors were encountered: