Setup
For Ember FW there is very a very simple setup process. The only thing beyond the normal way of adding a yarn dependency to the client/package.json
file, as documented here, is importing the styling for the addon in your app.scss
. This can be done by importing the general styling from ember-fw
and also the style override for power-select
:
@import "ember-fw/ember-fw";
@import "ember-fw/power-select/power-select-fw";
However, Ember FW is one of clientside packages that is completely added for you by the Generator-FW (which makes new apps), so these steps will all be done for any app that you would ever be working on. So in actuality, there is no setup you will need to do because it is already done for you.