ef4 / prember

Prerender Ember apps with Fastboot at build time.
MIT License
195 stars 17 forks source link

Cannot disable prember with environment variable #54

Open DLiblik opened 4 years ago

DLiblik commented 4 years ago

Running:

PREMBER=false ember s

actually forces prember to run because the test done as:

if (process.env.PREMBER) {
  enabled = true;
}

Would be more effective if the option could also be disabled: PREMBER_DISABLED=true or PREMBER=false