-
-
Notifications
You must be signed in to change notification settings - Fork 390
Expand file tree
/
Copy pathassets.rb
More file actions
21 lines (18 loc) · 875 Bytes
/
assets.rb
File metadata and controls
21 lines (18 loc) · 875 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# frozen_string_literal: true
# Be sure to restart your server when you modify this file.
# Version of your assets, change this if you want to expire all your assets.
Rails.application.config.assets.version = "1.0"
# Add additional assets to the asset load path.
Rails.application.config.assets.paths += [
Rails.root.join("node_modules/backbone"),
Rails.root.join("node_modules/bootstrap/dist/js"),
Rails.root.join("node_modules/bootstrap/dist/css"),
Rails.root.join("node_modules/jquery"),
Rails.root.join("node_modules/mousetrap"),
Rails.root.join("node_modules/underscore"),
Rails.root.join("node_modules/jquery-visible"),
Rails.root.join("node_modules/@fontsource/lato/files"),
Rails.root.join("node_modules/@fontsource/reenie-beanie/files"),
Rails.root.join("node_modules/font-awesome/css"),
Rails.root.join("node_modules/font-awesome/fonts")
]