config/environment.js in bootstrap-bookingsync-sass-1.0.5 vs config/environment.js in bootstrap-bookingsync-sass-2.0.0
- old
+ new
@@ -1,6 +1,16 @@
-/*jshint node:true*/
'use strict';
-module.exports = function(/* environment, appConfig */) {
- return { };
+module.exports = function(environment/* , appConfig */) {
+ let ENV = {
+ environment
+ };
+
+ ENV['ember-toggle'] = {
+ includedThemes: ['light'],
+ excludeBaseStyles: false,
+ defaultTheme: 'light',
+ defaultSize: 'medium'
+ };
+
+ return ENV;
};