abuiles / ember-cli-101-errata

18 stars 4 forks source link

Pg 50 Adding picnic to the ember-cli-build.js #258

Open jshwartz opened 8 years ago

jshwartz commented 8 years ago

On Page 50, when I installed Picnic, the file path I needed to add to ember-cli-build.js was:

app.import('bower_components/picnic/picnic.min.css');

not:

app.import('bower_components/picnic/releases/picnic.min.css');

Also, I couldn't find the asset "plugins.min.css" anywhere in bower_components/picnic/, so I couldn't get this line of code to work:

app.import('bower_components/picnic/releases/plugins.min.css');.

Note really sure if I need it though.