diff options
author | Teddy Wing | 2015-01-23 23:01:49 -0500 |
---|---|---|
committer | Teddy Wing | 2015-01-24 04:17:21 -0500 |
commit | 491e35d8c7161675afdbb697b9cce9768bb52749 (patch) | |
tree | 0e7eaaa56d4479fd558bc98634bbcee269bd3fe3 | |
parent | f4f60fdccc582878021b764b8a746185da542a49 (diff) | |
download | Notes-angular-demo-491e35d8c7161675afdbb697b9cce9768bb52749.tar.bz2 |
config/application.rb: Add bower components dir to asset path
This ensures our Bower-installed files are accessible through the asset
pipeline.
-rw-r--r-- | config/application.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/config/application.rb b/config/application.rb index a38a5a7..99f3263 100644 --- a/config/application.rb +++ b/config/application.rb @@ -22,5 +22,7 @@ module AngularDemo # Do not swallow errors in after_commit/after_rollback callbacks. config.active_record.raise_in_transactional_callbacks = true + + config.assets.paths << Rails.root.join('vendor', 'assets', 'components') end end |