Emi Matchu
874483eacb
Okay cool, so this was an error that was happening *only* when building assets for production: Sass's CSS minifier isn't familiar with all modern CSS syntax (I think is the issue?), and so errors on things that are actually totally okay. I had previously worked around this in `swf_assets/show.css` with an equivalent syntax that Sass recognized. But in this latest case with the new `fonts.css.erb`, it was upset about the `src` list for the fonts, and I don't know a workaround for that. So, let's just disable Sass's CSS minification for now. I imagine the difference isn't huge when CSS compresses just fine with gzip anyway? (Most of what you can "minify" in CSS is whitespace, and that largely seems silly to me when gzip is running.)
76 lines
2.5 KiB
Ruby
76 lines
2.5 KiB
Ruby
require_relative "boot"
|
|
|
|
require "rails"
|
|
|
|
# We disable some components we don't use, to: omit their routes, be confident
|
|
# that there's not e.g. surprise storage happening on the machine, and keep the
|
|
# app footprint smaller.
|
|
#
|
|
# Disabled:
|
|
# - active_storage/engine
|
|
# - active_job/railtie
|
|
# - action_mailbox/engine
|
|
# - action_text/engine
|
|
%w(
|
|
active_record/railtie
|
|
action_cable/engine
|
|
action_controller/railtie
|
|
action_view/railtie
|
|
action_mailer/railtie
|
|
rails/test_unit/railtie
|
|
).each do |railtie|
|
|
begin
|
|
require railtie
|
|
rescue LoadError
|
|
end
|
|
end
|
|
|
|
# Require the gems listed in Gemfile, including any gems
|
|
# you've limited to :test, :development, or :production.
|
|
Bundler.require(*Rails.groups)
|
|
|
|
module OpenneoImpressItems
|
|
class Application < Rails::Application
|
|
# Initialize configuration defaults for originally generated Rails version.
|
|
config.load_defaults 7.1
|
|
|
|
# Please, add to the `ignore` list any other `lib` subdirectories that do
|
|
# not contain `.rb` files, or that should not be reloaded or eager loaded.
|
|
# Common ones are `templates`, `generators`, or `middleware`, for example.
|
|
config.autoload_lib(ignore: %w(assets tasks))
|
|
|
|
# Configuration for the application, engines, and railties goes here.
|
|
#
|
|
# These settings can be overridden in specific environments using the files
|
|
# in config/environments, which are processed later.
|
|
#
|
|
config.time_zone = "Pacific Time (US & Canada)"
|
|
# config.eager_load_paths << Rails.root.join("extras")
|
|
|
|
config.i18n.fallbacks = true
|
|
|
|
Mime::Type.register "image/gif", :gif
|
|
|
|
ActionController::Base.config.relative_url_root = ''
|
|
|
|
config.assets.enabled = true
|
|
config.assets.version = '1.0'
|
|
config.assets.paths << Rails.root.join('app', 'assets', 'fonts')
|
|
config.assets.precompile << '*.js'
|
|
config.assets.initialize_on_precompile = false
|
|
config.assets.css_compressor = nil # Sass's compressor can't handle all modern CSS…
|
|
|
|
config.middleware.insert_after ActionDispatch::Flash, Rack::Attack
|
|
|
|
# On the Falcon server, requests run on fibers. Isolate Rails internal
|
|
# state to the per-fiber level, to avoid conflicts that crash stuff!
|
|
config.active_support.isolation_level = :fiber
|
|
|
|
# It seems like some Neopets servers reject any user agent containing
|
|
# symbols? So I can't provide anything helpful like a URL, email address,
|
|
# version number, etc. So let's only send this to Neopets systems, where it
|
|
# should hopefully be clear who we are from context!
|
|
config.user_agent_for_neopets = "Dress to Impress"
|
|
end
|
|
end
|
|
|