The following problem needs to be solved: I try to create a component within an ember addon, that's using sass. Within my addon I don't want to compile that scss files, that should be done within my project using ember-cli-sass and ember-css-modules-sass. The component I'm creating in my addon is also using sass modules, but I didn't install the ember packages for this, because I do that in my project.
I run into the problem, that when I try to serve my ember application from my project directory, I get the error that within my addon an imported scss file is unreadable or not there.
What am I doing wrong? Thank you very much!
*.scss
files inapp/styles
folder of your addon. It's merged withapp/styles
of your app on build time. This allows you to import it as if the file were part of the app. You must ensure that you don't have name conflicts. A convention to do so is using a folder with the name of the addon. – jelhan