j4pm/config/routes.rb

8 lines
247 B
Ruby
Raw Normal View History

2021-12-10 19:39:43 +00:00
Rails.application.routes.draw do
# For details on the DSL available within this file, see https://guides.rubyonrails.org/routing.html
2022-04-02 01:16:05 +00:00
get '/portfolio', to: 'svelte#portfolio'
get '/friends', to: 'svelte#friends'
root 'svelte#index'
2021-12-10 19:39:43 +00:00
end