Skip to content

Commit

Permalink
Fixing SCSS issue for deploying to Heroku
Browse files Browse the repository at this point in the history
Need to use correct notation for folders.
  • Loading branch information
Bennett, Ashley authored and Bennett, Ashley committed Mar 3, 2017
1 parent feb85cf commit 37ed561
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion app/firebase/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ try {
};
firebase.initializeApp(config);
} catch (e) {
console.log("Error Initializing Firebase", e, "API Key: " + process.env.API_KEY);
console.log("Error Initializing Firebase", e);
}

// For logging into the app with GitHub, used in Actions.
Expand Down
14 changes: 7 additions & 7 deletions app/styles/app.scss
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
@import "base/variables";
@import "/base/variables";

// Foundation
@import "base/foundation-settings";
@import "/base/foundation-settings";
@import "foundation";
@include foundation-everything;

// Components
@import "components/callout-auth";
@import "components/container";
@import "components/page-actions";
@import "components/page-title";
@import "components/todo";
@import "/components/callout-auth";
@import "/components/container";
@import "/components/page-actions";
@import "/components/page-title";
@import "/components/todo";

0 comments on commit 37ed561

Please sign in to comment.