diff --git a/config/routes.rb b/config/routes.rb index 352b3d5..d9cf4bf 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -3,7 +3,7 @@ Rails.application.routes.draw do root to: "entrypoint#index" get "*all" => "entrypoint#index", constraints: lambda { |req| - ["playground", "rails", "graphql"].filter do |path| + ["rails", "admin", "graphql", "playground"].filter do |path| req.path.include?(path) end.blank? }