I am fairly new to ember and very new to the build tools. I am currently using the usual foundation install with the foundation cli and compass to compile my css, this is a bit of a pain and is very bad for working on a team. I thought it would be better to install the files with bower and use ember-cli-compass-compiler
as stated in the docs but its not working as expected. I would like to have the app.scss
file in the app/styles
directory and import all the required foundation components within that file. I would also like to keep the _settings.scss
component within the app/styles
directory so it can be easily shared.
E.g
@import "settings";
@import "vendor/foundation/scss/foundation";
However this gives me the error File to import not found or unreadable: vendor/foundation/scss/foundation.
I can assure you that the foundation.scss file in the vendor directory does exist. I have also tried importing the file using app.import()
in the Brocfile.js
but with no avail.