Created
December 7, 2017 09:58
-
-
Save flexbox/4c993cec26c694b7fe15f6e1726006f6 to your computer and use it in GitHub Desktop.
Styleguide for high_voltage
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# config/initializers/high_voltage.rb | |
HighVoltage.configure do |config| | |
config.routes = false | |
config.layout = 'design' | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# config/routes.rb | |
constraints(subdomain: 'design') do | |
root to: redirect('/index') | |
get '/*id' => 'high_voltage/pages#show' | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment