module Roda::RodaPlugins::StaticRouting::ClassMethods

def freeze

Freeze the static route metadata when freezing the app.
def freeze
  opts[:static_routes].freeze
  opts[:static_routes].each_value(&:freeze)
  super
end