I’m trying to use the Argon Bootstrap theme across 2 apps in my first Hanami project. I’m having a hard time figuring out where to put the files though, such that both apps can find them. Seems like adding ../../lib/assets
to the Hanami::Assets.sources
in each app’s application.rb
file doesn’t quite do it. I also tried creating a gem that was vendored in lib/
but that didn’t work either.
You can see in the quickstart that I have to require assets in a certain order. One option would be to mash them all into a single file based on type myself, but I feel like Hanami should let me do what I’m trying to do. I must be missing something.
Thanks for your help!